Skip to content

Commit 92f36ff

Browse files
committed
prepare release 2.1.0
1 parent f01cb2b commit 92f36ff

File tree

3 files changed

+20
-4
lines changed

3 files changed

+20
-4
lines changed

CHANGELOG.md

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

66

7+
<a name="2.1.0"></a>
8+
## [2.1.0] (2021-06-23)
9+
10+
### Features
11+
- Add pre-commit hook. [#78] by [bjornconstructors]
12+
- *Experimental:* Expose new `analyze` method, which returns fine-grained coverage reports. [#67] by [MiWeiss]
13+
14+
### Bug Fixes
15+
- Remove a false AssertionError which was raised for long docstrings. [#82] by [MiWeiss]
16+
17+
718
<a name="2.0.1"></a>
819
## [2.0.1] (2021-03-03)
920

@@ -113,7 +124,8 @@
113124
* Initial release
114125

115126

116-
[Unreleased]: https://github.com/HunterMcGushion/docstr_coverage/compare/v2.0.1...HEAD
127+
[Unreleased]: https://github.com/HunterMcGushion/docstr_coverage/compare/v2.1.0...HEAD
128+
[2.1.0]: https://github.com/HunterMcGushion/docstr_coverage/compare/v2.0.1...v2.1.0
117129
[2.0.1]: https://github.com/HunterMcGushion/docstr_coverage/compare/v2.0.0...v2.0.1
118130
[2.0.0]: https://github.com/HunterMcGushion/docstr_coverage/compare/v1.4.0...v2.0.0
119131
[1.4.0]: https://github.com/HunterMcGushion/docstr_coverage/compare/v1.3.0...v1.4.0
@@ -126,6 +138,7 @@
126138

127139

128140
[asergeant01]: https://github.com/asergeant01
141+
[bjornconstructors]: https://github.com/bjornconstructors
129142
[cthoyt]: https://github.com/cthoyt
130143
[econchick]: https://github.com/econchick
131144
[epassaro]: https://github.com/epassaro
@@ -154,4 +167,7 @@
154167
[#46]: https://github.com/HunterMcGushion/docstr_coverage/pull/46
155168
[#47]: https://github.com/HunterMcGushion/docstr_coverage/issues/47
156169
[#48]: https://github.com/HunterMcGushion/docstr_coverage/pull/48
157-
[#57]: https://github.com/HunterMcGushion/docstr_coverage/pull/57
170+
[#57]: https://github.com/HunterMcGushion/docstr_coverage/pull/57
171+
[#67]: https://github.com/HunterMcGushion/docstr_coverage/pull/67
172+
[#78]: https://github.com/HunterMcGushion/docstr_coverage/pull/78
173+
[#82]: https://github.com/HunterMcGushion/docstr_coverage/pull/82

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

1212
setup(

0 commit comments

Comments
 (0)