diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 54010ff..a2dc957 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,14 @@ Changelog ========= +0.13.2 (2025-11-13) +------------------- + +**Documentation** + +* Updated the help text of ``DB_POOL_ENABLED`` to indicate that connection pooling is experimental and not recommended for production use. +* Added a reference to the connection pooling documentation. + 0.13.1 (2025-10-03) ------------------- diff --git a/README.rst b/README.rst index e75c6c2..51ac3a5 100644 --- a/README.rst +++ b/README.rst @@ -1,7 +1,7 @@ Open API Framework ================== -:Version: 0.13.1 +:Version: 0.13.2 :Source: https://github.com/maykinmedia/open-api-framework :Keywords: metapackage, dependencies diff --git a/docs/conf.py b/docs/conf.py index f4dc07a..8d9e011 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -26,7 +26,7 @@ author = "Maykin Media" # The full version, including alpha/beta/rc tags -release = "0.13.1" +release = "0.13.2" # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index 784ebf7..89dbc4b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "open-api-framework" -version = "0.13.1" +version = "0.13.2" description = "A metapackage for registration components, that bundles the dependencies shared between these components and provides generic settings" authors = [ {name = "Maykin Media", email = "support@maykinmedia.nl"} @@ -129,7 +129,7 @@ env = [ ] [tool.bumpversion] -current_version = "0.13.1" +current_version = "0.13.2" files = [ {filename = "pyproject.toml"}, {filename = "README.rst"},