Skip to content

Commit

Permalink
Release v1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
HunterMcGushion committed Dec 5, 2020
1 parent 4ac6dbc commit 751d440
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 4 deletions.
19 changes: 17 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
<a name="Unreleased"></a>
## [Unreleased]

...


<a name="1.4.0"></a>
## [1.4.0] (2020-12-05)

### Features
* Excuse missing docstrings by marking classes/functions with special comments. [#34] by [MiWeiss].
* `# docstr_coverage: inherited` to mark subclass methods as being documented by their parent
* ```# docstr_coverage: excused `My bad excuse` ``` to arbitrarily excuse missing docstrings
* Find examples and more information [here](https://github.com/HunterMcGushion/docstr_coverage#overriding-by-comments)


<a name="1.3.0"></a>
## [1.3.0] (2020-11-17)
Expand Down Expand Up @@ -64,7 +76,8 @@
* Initial release


[Unreleased]: https://github.com/HunterMcGushion/docstr_coverage/compare/v1.3.0...HEAD
[Unreleased]: https://github.com/HunterMcGushion/docstr_coverage/compare/v1.4.0...HEAD
[1.4.0]: https://github.com/HunterMcGushion/docstr_coverage/compare/v1.3.0...v1.4.0
[1.3.0]: https://github.com/HunterMcGushion/docstr_coverage/compare/v1.2.0...v1.3.0
[1.2.0]: https://github.com/HunterMcGushion/docstr_coverage/compare/v1.1.0...v1.2.0
[1.1.0]: https://github.com/HunterMcGushion/docstr_coverage/compare/v1.0.5...v1.1.0
Expand All @@ -78,6 +91,7 @@
[econchick]: https://github.com/econchick
[HunterMcGushion]: https://github.com/HunterMcGushion
[killthekitten]: https://github.com/killthekitten
[MiWeiss]: https://github.com/MiWeiss
[Redysz]: https://github.com/Redysz
[sim0nx]: https://github.com/sim0nx

Expand All @@ -91,4 +105,5 @@
[#19]: https://github.com/HunterMcGushion/docstr_coverage/pull/19
[#22]: https://github.com/HunterMcGushion/docstr_coverage/pull/22
[#24]: https://github.com/HunterMcGushion/docstr_coverage/pull/24
[#32]: https://github.com/HunterMcGushion/docstr_coverage/pull/32
[#32]: https://github.com/HunterMcGushion/docstr_coverage/pull/32
[#34]: https://github.com/HunterMcGushion/docstr_coverage/pull/34
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
author = "Hunter McGushion"

version = "" # The short X.Y version
release = "1.3.0" # The full version, including alpha/beta/rc tags
release = "1.4.0" # The full version, including alpha/beta/rc tags

##################################################
# General Configuration
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ def readme():
return f.read()


MAJOR, MINOR, MICRO = 1, 3, 0
MAJOR, MINOR, MICRO = 1, 4, 0
__VERSION__ = "{}.{}.{}".format(MAJOR, MINOR, MICRO)

setup(
Expand Down

0 comments on commit 751d440

Please sign in to comment.