Skip to content

Commit 3bb8ad1

Browse files
Release v2.3.2
1 parent a6454c8 commit 3bb8ad1

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-5
lines changed

CHANGELOG.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33

44
...
55

6+
<a name="2.3.2"></a>
7+
## [2.3.2] (2024-05-07)
8+
9+
### Changes
10+
- Unpin TQDM version requirement. [#142] by [MiWeiss].
11+
612
<a name="2.3.1"></a>
713
## [2.3.1] (2024-02-28)
814

@@ -171,7 +177,8 @@
171177
* Initial release
172178

173179

174-
[Unreleased]: https://github.com/HunterMcGushion/docstr_coverage/compare/v2.3.1...HEAD
180+
[Unreleased]: https://github.com/HunterMcGushion/docstr_coverage/compare/v2.3.2...HEAD
181+
[2.3.2]: https://github.com/HunterMcGushion/docstr_coverage/compare/v2.3.1...v2.3.2
175182
[2.3.1]: https://github.com/HunterMcGushion/docstr_coverage/compare/v2.3.0...v2.3.1
176183
[2.3.0]: https://github.com/HunterMcGushion/docstr_coverage/compare/v2.2.0...v2.3.0
177184
[2.2.0]: https://github.com/HunterMcGushion/docstr_coverage/compare/v2.1.1...v2.2.0
@@ -230,4 +237,5 @@
230237
[#106]: https://github.com/HunterMcGushion/docstr_coverage/pull/106
231238
[#116]: https://github.com/HunterMcGushion/docstr_coverage/pull/116
232239
[#117]: https://github.com/HunterMcGushion/docstr_coverage/pull/117
233-
[#139]: https://github.com/HunterMcGushion/docstr_coverage/pull/139
240+
[#139]: https://github.com/HunterMcGushion/docstr_coverage/pull/139
241+
[#142]: https://github.com/HunterMcGushion/docstr_coverage/pull/142

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ and configuring the `paths` section of the [`.docstr.yaml` config](#config-file)
178178
```yaml
179179
repos:
180180
- repo: https://github.com/HunterMcGushion/docstr_coverage
181-
rev: v2.3.1 # most recent docstr-coverage release or commit sha
181+
rev: v2.3.2 # most recent docstr-coverage release or commit sha
182182
hooks:
183183
- id: docstr-coverage
184184
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.3.1" # The full version, including alpha/beta/rc tags
24+
release = "2.3.2" # 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, 3, 1
9+
MAJOR, MINOR, MICRO = 2, 3, 2
1010
__VERSION__ = "{}.{}.{}".format(MAJOR, MINOR, MICRO)
1111

1212
setup(

0 commit comments

Comments
 (0)