Skip to content

Commit

Permalink
Release v2.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
HunterMcGushion committed May 7, 2024
1 parent a6454c8 commit 3bb8ad1
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
12 changes: 10 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@

...

<a name="2.3.2"></a>
## [2.3.2] (2024-05-07)

### Changes
- Unpin TQDM version requirement. [#142] by [MiWeiss].

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

Expand Down Expand Up @@ -171,7 +177,8 @@
* Initial release


[Unreleased]: https://github.com/HunterMcGushion/docstr_coverage/compare/v2.3.1...HEAD
[Unreleased]: https://github.com/HunterMcGushion/docstr_coverage/compare/v2.3.2...HEAD
[2.3.2]: https://github.com/HunterMcGushion/docstr_coverage/compare/v2.3.1...v2.3.2
[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
Expand Down Expand Up @@ -230,4 +237,5 @@
[#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
[#139]: https://github.com/HunterMcGushion/docstr_coverage/pull/139
[#139]: https://github.com/HunterMcGushion/docstr_coverage/pull/139
[#142]: https://github.com/HunterMcGushion/docstr_coverage/pull/142
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.1 # most recent docstr-coverage release or commit sha
rev: v2.3.2 # 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.1" # The full version, including alpha/beta/rc tags
release = "2.3.2" # 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, 1
MAJOR, MINOR, MICRO = 2, 3, 2
__VERSION__ = "{}.{}.{}".format(MAJOR, MINOR, MICRO)

setup(
Expand Down

0 comments on commit 3bb8ad1

Please sign in to comment.