Skip to content

Commit d0f27cb

Browse files
Merge pull request HunterMcGushion#103 from HunterMcGushion/release/v2.2.0
Release v2.2.0
2 parents f823783 + 5092bb5 commit d0f27cb

File tree

4 files changed

+16
-5
lines changed

4 files changed

+16
-5
lines changed

CHANGELOG.md

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

66

7+
<a name="2.2.0"></a>
8+
## [2.2.0] (2022-03-17)
9+
10+
### Features
11+
- Add `--skip-property` flag to ignore methods with the `@property` decorator. [#86] by [MiWeiss].
12+
- Add `--include-setter` flag to check methods with the `@setter` decorator. [#86] by [MiWeiss].
13+
- Add `--include-deleter` flag to check methods with the `@deleter` decorator. [#86] by [MiWeiss].
14+
15+
716
<a name="2.1.1"></a>
817
## [2.1.1] (2021-07-02)
918

@@ -138,7 +147,8 @@
138147
* Initial release
139148

140149

141-
[Unreleased]: https://github.com/HunterMcGushion/docstr_coverage/compare/v2.1.1...HEAD
150+
[Unreleased]: https://github.com/HunterMcGushion/docstr_coverage/compare/v2.2.0...HEAD
151+
[2.2.0]: https://github.com/HunterMcGushion/docstr_coverage/compare/v2.1.1...v2.2.0
142152
[2.1.1]: https://github.com/HunterMcGushion/docstr_coverage/compare/v2.1.0...v2.1.1
143153
[2.1.0]: https://github.com/HunterMcGushion/docstr_coverage/compare/v2.0.1...v2.1.0
144154
[2.0.1]: https://github.com/HunterMcGushion/docstr_coverage/compare/v2.0.0...v2.0.1
@@ -187,4 +197,5 @@
187197
[#78]: https://github.com/HunterMcGushion/docstr_coverage/pull/78
188198
[#82]: https://github.com/HunterMcGushion/docstr_coverage/pull/82
189199
[#84]: https://github.com/HunterMcGushion/docstr_coverage/pull/84
190-
[#85]: https://github.com/HunterMcGushion/docstr_coverage/pull/85
200+
[#85]: https://github.com/HunterMcGushion/docstr_coverage/pull/85
201+
[#86]: https://github.com/HunterMcGushion/docstr_coverage/pull/86

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ and configuring the `paths` section of the [`.docstr.yaml` config](#config-file)
186186
```yaml
187187
repos:
188188
- repo: https://github.com/HunterMcGushion/docstr_coverage
189-
rev: v2.1.1 # most recent docstr-coverage release or commit sha
189+
rev: v2.2.0 # most recent docstr-coverage release or commit sha
190190
hooks:
191191
- id: docstr-coverage
192192
args: ["--verbose", "2"] # override the .docstr.yaml to see less output

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

1212
setup(

0 commit comments

Comments
 (0)