Skip to content

Commit 880a7c8

Browse files
Release v2.0.1
1 parent e4a5285 commit 880a7c8

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

CHANGELOG.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@
44
...
55

66

7+
<a name="2.0.1"></a>
8+
## [2.0.1] (2021-03-03)
9+
10+
### Bug Fixes
11+
- Fix `--help`/`-h` flag. [#57] by [MiWeiss].
12+
13+
714
<a name="2.0.0"></a>
815
## [2.0.0] (2021-01-11)
916

@@ -106,7 +113,8 @@
106113
* Initial release
107114

108115

109-
[Unreleased]: https://github.com/HunterMcGushion/docstr_coverage/compare/v2.0.0...HEAD
116+
[Unreleased]: https://github.com/HunterMcGushion/docstr_coverage/compare/v2.0.1...HEAD
117+
[2.0.1]: https://github.com/HunterMcGushion/docstr_coverage/compare/v2.0.0...v2.0.1
110118
[2.0.0]: https://github.com/HunterMcGushion/docstr_coverage/compare/v1.4.0...v2.0.0
111119
[1.4.0]: https://github.com/HunterMcGushion/docstr_coverage/compare/v1.3.0...v1.4.0
112120
[1.3.0]: https://github.com/HunterMcGushion/docstr_coverage/compare/v1.2.0...v1.3.0
@@ -145,4 +153,5 @@
145153
[#45]: https://github.com/HunterMcGushion/docstr_coverage/pull/45
146154
[#46]: https://github.com/HunterMcGushion/docstr_coverage/pull/46
147155
[#47]: https://github.com/HunterMcGushion/docstr_coverage/issues/47
148-
[#48]: https://github.com/HunterMcGushion/docstr_coverage/pull/48
156+
[#48]: https://github.com/HunterMcGushion/docstr_coverage/pull/48
157+
[#57]: https://github.com/HunterMcGushion/docstr_coverage/pull/57

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 = "2.0.0" # The full version, including alpha/beta/rc tags
24+
release = "2.0.1" # 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 = 2, 0, 0
9+
MAJOR, MINOR, MICRO = 2, 0, 1
1010
__VERSION__ = "{}.{}.{}".format(MAJOR, MINOR, MICRO)
1111

1212
setup(

0 commit comments

Comments
 (0)