Skip to content

Commit bf8ef76

Browse files
committed
Release 1.0.2
1 parent 3032721 commit bf8ef76

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

CHANGELOG.rst

+10
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@ Changelog
22
=========
33

44

5+
Version 1.0.2
6+
-------------
7+
8+
:Date: May 23, 2024
9+
10+
* Add tests for Python 3.12
11+
* Remove warning about unclosed files
12+
* Allow ``str`` and ``None`` types on ``notfound_urls_prefix``
13+
* Run ``pyupgrade`` and ``ruff`` on the codebase
14+
515
Version 1.0.1
616
-------------
717

notfound/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.0.1"
1+
__version__ = "1.0.2"

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ keywords=[
1818
dependencies = [
1919
"sphinx>=5",
2020
]
21-
version = "1.0.1"
21+
version = "1.0.2"
2222
readme = "README.rst"
2323
requires-python = ">=3.8"
2424
license = {file = "LICENSE"}
@@ -73,7 +73,7 @@ exclude = [
7373
]
7474

7575
[tool.bumpver]
76-
current_version = "1.0.1"
76+
current_version = "1.0.2"
7777
version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]"
7878
commit_message = "Release {new_version}"
7979
commit = true

0 commit comments

Comments
 (0)