Skip to content

Commit 751d440

Browse files
Release v1.4.0
1 parent 4ac6dbc commit 751d440

File tree

3 files changed

+19
-4
lines changed

3 files changed

+19
-4
lines changed

CHANGELOG.md

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

4+
...
5+
6+
7+
<a name="1.4.0"></a>
8+
## [1.4.0] (2020-12-05)
9+
10+
### Features
11+
* Excuse missing docstrings by marking classes/functions with special comments. [#34] by [MiWeiss].
12+
* `# docstr_coverage: inherited` to mark subclass methods as being documented by their parent
13+
* ```# docstr_coverage: excused `My bad excuse` ``` to arbitrarily excuse missing docstrings
14+
* Find examples and more information [here](https://github.com/HunterMcGushion/docstr_coverage#overriding-by-comments)
15+
416

517
<a name="1.3.0"></a>
618
## [1.3.0] (2020-11-17)
@@ -64,7 +76,8 @@
6476
* Initial release
6577

6678

67-
[Unreleased]: https://github.com/HunterMcGushion/docstr_coverage/compare/v1.3.0...HEAD
79+
[Unreleased]: https://github.com/HunterMcGushion/docstr_coverage/compare/v1.4.0...HEAD
80+
[1.4.0]: https://github.com/HunterMcGushion/docstr_coverage/compare/v1.3.0...v1.4.0
6881
[1.3.0]: https://github.com/HunterMcGushion/docstr_coverage/compare/v1.2.0...v1.3.0
6982
[1.2.0]: https://github.com/HunterMcGushion/docstr_coverage/compare/v1.1.0...v1.2.0
7083
[1.1.0]: https://github.com/HunterMcGushion/docstr_coverage/compare/v1.0.5...v1.1.0
@@ -78,6 +91,7 @@
7891
[econchick]: https://github.com/econchick
7992
[HunterMcGushion]: https://github.com/HunterMcGushion
8093
[killthekitten]: https://github.com/killthekitten
94+
[MiWeiss]: https://github.com/MiWeiss
8195
[Redysz]: https://github.com/Redysz
8296
[sim0nx]: https://github.com/sim0nx
8397

@@ -91,4 +105,5 @@
91105
[#19]: https://github.com/HunterMcGushion/docstr_coverage/pull/19
92106
[#22]: https://github.com/HunterMcGushion/docstr_coverage/pull/22
93107
[#24]: https://github.com/HunterMcGushion/docstr_coverage/pull/24
94-
[#32]: https://github.com/HunterMcGushion/docstr_coverage/pull/32
108+
[#32]: https://github.com/HunterMcGushion/docstr_coverage/pull/32
109+
[#34]: https://github.com/HunterMcGushion/docstr_coverage/pull/34

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

1212
setup(

0 commit comments

Comments
 (0)