Skip to content

Commit 906e023

Browse files
Release v1.2.0
1 parent 3e737ae commit 906e023

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
<a name="Unreleased"></a>
22
## [Unreleased]
33

4+
5+
<a name="1.2.0"></a>
6+
## [1.2.0] (2020-07-21)
7+
48
### Features
59
* Added ability to pass multiple paths to CLI for docstring inspection. [#24] by [HunterMcGushion].
610
* Added `--badge`/`-b` option to generate a docstring coverage percent badge as an SVG image saved
@@ -53,7 +57,8 @@
5357
* Initial release
5458

5559

56-
[Unreleased]: https://github.com/HunterMcGushion/docstr_coverage/compare/v1.1.0...HEAD
60+
[Unreleased]: https://github.com/HunterMcGushion/docstr_coverage/compare/v1.2.0...HEAD
61+
[1.2.0]: https://github.com/HunterMcGushion/docstr_coverage/compare/v1.1.0...v1.2.0
5762
[1.1.0]: https://github.com/HunterMcGushion/docstr_coverage/compare/v1.0.5...v1.1.0
5863
[1.0.5]: https://github.com/HunterMcGushion/docstr_coverage/compare/v1.0.4...v1.0.5
5964
[1.0.4]: https://github.com/HunterMcGushion/docstr_coverage/compare/v1.0.3...v1.0.4

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
author = "Hunter McGushion"
2222

2323
version = "" # The short X.Y version
24-
release = "1.1.0" # The full version, including alpha/beta/rc tags
24+
release = "1.2.0" # The full version, including alpha/beta/rc tags
2525

2626
##################################################
2727
# General Configuration

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ def readme():
66
return f.read()
77

88

9-
MAJOR, MINOR, MICRO = 1, 1, 0
9+
MAJOR, MINOR, MICRO = 1, 2, 0
1010
__VERSION__ = "{}.{}.{}".format(MAJOR, MINOR, MICRO)
1111

1212
setup(

0 commit comments

Comments
 (0)