diff --git a/CHANGELOG.rst b/CHANGELOG.rst index f10bc90..4af2333 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,14 @@ Changelog ========= +Version 1.0.1 +------------- + +:Date: May 21, 2024 + +* Do not create 404 page for embedded +* Small documentation improvements + Version 1.0.0 ------------- diff --git a/notfound/__init__.py b/notfound/__init__.py index 5becc17..5c4105c 100644 --- a/notfound/__init__.py +++ b/notfound/__init__.py @@ -1 +1 @@ -__version__ = "1.0.0" +__version__ = "1.0.1" diff --git a/pyproject.toml b/pyproject.toml index 25f78ec..6b8517a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,7 +18,7 @@ keywords=[ dependencies = [ "sphinx>=5", ] -version = "1.0.0" +version = "1.0.1" readme = "README.rst" requires-python = ">=3.8" license = {file = "LICENSE"} @@ -73,7 +73,7 @@ exclude = [ ] [tool.bumpver] -current_version = "1.0.0" +current_version = "1.0.1" version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]" commit_message = "Release {new_version}" commit = true