diff --git a/CHANGELOG.rst b/CHANGELOG.rst index a2dc957..92c7a20 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,17 @@ Changelog ========= +0.13.3 (2026-01-28) +------------------- + +**Bugfixes** + +* [#196] Fix errors raised when using ``open-api-framework`` without optional dependencies + +**Project maintenance** + +* Remove Django 4.2 from CI (pyproject.toml enforces >=5.2) + 0.13.2 (2025-11-13) ------------------- diff --git a/README.rst b/README.rst index 51ac3a5..c797ca8 100644 --- a/README.rst +++ b/README.rst @@ -1,7 +1,7 @@ Open API Framework ================== -:Version: 0.13.2 +:Version: 0.13.3 :Source: https://github.com/maykinmedia/open-api-framework :Keywords: metapackage, dependencies diff --git a/docs/conf.py b/docs/conf.py index 8d9e011..a94ed0b 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.2" +release = "0.13.3" # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index 89dbc4b..00645cd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "open-api-framework" -version = "0.13.2" +version = "0.13.3" 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.2" +current_version = "0.13.3" files = [ {filename = "pyproject.toml"}, {filename = "README.rst"},