diff --git a/CHANGELOG.md b/CHANGELOG.md index 6fbbc73..9959f1c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,17 @@ +## v0.17.1 (2024-01-07) + +### Fix + +* Log placeholder ([#60](https://github.com/madpah/serializable/issues/60)) ([`3cc6cad`](https://github.com/madpah/serializable/commit/3cc6cadad27a86b46ca576540f89a15f0f8fc1cd)) + +### Documentation + +* Add "documentation" url to project meta ([`bf864d7`](https://github.com/madpah/serializable/commit/bf864d75d8a12426d4c71ae9ea1f533e730bd54e)) +* Add "documentation" url to project meta ([`d3bcc42`](https://github.com/madpah/serializable/commit/d3bcc4258ab8cdf6c9e09b47985997cafdc19e9a)) + ## v0.17.0 (2024-01-06) ### Feature diff --git a/docs/conf.py b/docs/conf.py index 1dad116..0df8f55 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -25,7 +25,7 @@ # The full version, including alpha/beta/rc tags # !! version is managed by semantic_release -release = '0.17.0' +release = '0.17.1' # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index a9f809a..72f6847 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "py-serializable" -version = "0.17.0" +version = "0.17.1" description = "Library for serializing and deserializing Python Objects to and from JSON and XML." authors = ["Paul Horton "] maintainers = [ diff --git a/serializable/__init__.py b/serializable/__init__.py index cc91f8a..3126eb3 100644 --- a/serializable/__init__.py +++ b/serializable/__init__.py @@ -71,7 +71,7 @@ # !! version is managed by semantic_release # do not use typing here, or else `semantic_release` might have issues finding the variable -__version__ = '0.17.0' +__version__ = '0.17.1' # make logger publicly available, as stable API logger = _logger