Skip to content

Commit

Permalink
Release v2.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
HunterMcGushion committed Feb 29, 2024
1 parent d263164 commit 3c5d14e
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 5 deletions.
15 changes: 13 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@

...

<a name="2.3.1"></a>
## [2.3.1] (2024-02-28)

### Features
- Add support for Python 3.12. [#139] by [MiWeiss].

### Deprecations
- Remove support for Python 3.7. [#139] by [MiWeiss].


<a name="2.3.0"></a>
## [2.3.0] (2023-04-13)
Expand Down Expand Up @@ -162,7 +171,8 @@
* Initial release


[Unreleased]: https://github.com/HunterMcGushion/docstr_coverage/compare/v2.3.0...HEAD
[Unreleased]: https://github.com/HunterMcGushion/docstr_coverage/compare/v2.3.1...HEAD
[2.3.1]: https://github.com/HunterMcGushion/docstr_coverage/compare/v2.3.0...v2.3.1
[2.3.0]: https://github.com/HunterMcGushion/docstr_coverage/compare/v2.2.0...v2.3.0
[2.2.0]: https://github.com/HunterMcGushion/docstr_coverage/compare/v2.1.1...v2.2.0
[2.1.1]: https://github.com/HunterMcGushion/docstr_coverage/compare/v2.1.0...v2.1.1
Expand Down Expand Up @@ -219,4 +229,5 @@
[#87]: https://github.com/HunterMcGushion/docstr_coverage/pull/87
[#106]: https://github.com/HunterMcGushion/docstr_coverage/pull/106
[#116]: https://github.com/HunterMcGushion/docstr_coverage/pull/116
[#117]: https://github.com/HunterMcGushion/docstr_coverage/pull/117
[#117]: https://github.com/HunterMcGushion/docstr_coverage/pull/117
[#139]: https://github.com/HunterMcGushion/docstr_coverage/pull/139
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ and configuring the `paths` section of the [`.docstr.yaml` config](#config-file)
```yaml
repos:
- repo: https://github.com/HunterMcGushion/docstr_coverage
rev: v2.3.0 # most recent docstr-coverage release or commit sha
rev: v2.3.1 # most recent docstr-coverage release or commit sha
hooks:
- id: docstr-coverage
args: ["--verbose", "2"] # override the .docstr.yaml to see less output
Expand Down
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 = "2.3.0" # The full version, including alpha/beta/rc tags
release = "2.3.1" # 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 = 2, 3, 0
MAJOR, MINOR, MICRO = 2, 3, 1
__VERSION__ = "{}.{}.{}".format(MAJOR, MINOR, MICRO)

setup(
Expand Down

0 comments on commit 3c5d14e

Please sign in to comment.