Skip to content

Commit 7e896f8

Browse files
Release v1.3.0
1 parent a819b80 commit 7e896f8

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

CHANGELOG.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22
## [Unreleased]
33

44

5+
<a name="1.3.0"></a>
6+
## [1.3.0] (2020-11-17)
7+
8+
### Features
9+
* Add ability to skip private functions. [#32] by [cthoyt].
10+
11+
512
<a name="1.2.0"></a>
613
## [1.2.0] (2020-07-21)
714

@@ -57,7 +64,8 @@
5764
* Initial release
5865

5966

60-
[Unreleased]: https://github.com/HunterMcGushion/docstr_coverage/compare/v1.2.0...HEAD
67+
[Unreleased]: https://github.com/HunterMcGushion/docstr_coverage/compare/v1.3.0...HEAD
68+
[1.3.0]: https://github.com/HunterMcGushion/docstr_coverage/compare/v1.2.0...v1.3.0
6169
[1.2.0]: https://github.com/HunterMcGushion/docstr_coverage/compare/v1.1.0...v1.2.0
6270
[1.1.0]: https://github.com/HunterMcGushion/docstr_coverage/compare/v1.0.5...v1.1.0
6371
[1.0.5]: https://github.com/HunterMcGushion/docstr_coverage/compare/v1.0.4...v1.0.5
@@ -66,6 +74,7 @@
6674

6775

6876
[asergeant01]: https://github.com/asergeant01
77+
[cthoyt]: https://github.com/cthoyt
6978
[econchick]: https://github.com/econchick
7079
[HunterMcGushion]: https://github.com/HunterMcGushion
7180
[killthekitten]: https://github.com/killthekitten
@@ -81,4 +90,5 @@
8190
[#16]: https://github.com/HunterMcGushion/docstr_coverage/pull/16
8291
[#19]: https://github.com/HunterMcGushion/docstr_coverage/pull/19
8392
[#22]: https://github.com/HunterMcGushion/docstr_coverage/pull/22
84-
[#24]: https://github.com/HunterMcGushion/docstr_coverage/pull/24
93+
[#24]: https://github.com/HunterMcGushion/docstr_coverage/pull/24
94+
[#32]: https://github.com/HunterMcGushion/docstr_coverage/pull/32

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

1212
setup(

0 commit comments

Comments
 (0)