diff --git a/CHANGELOG.md b/CHANGELOG.md index ea56ba87..9c54e2e8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.3.0] - 2021-03-07 + ### Added - Add support for OpenAPI 3.1. [#276] @@ -499,6 +501,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [2.0.2]: https://github.com/jdkandersson/OpenAlchemy/releases/2.0.2 [2.1.0]: https://github.com/jdkandersson/OpenAlchemy/releases/2.1.0 [2.2.0]: https://github.com/jdkandersson/OpenAlchemy/releases/2.2.0 +[2.3.0]: https://github.com/jdkandersson/OpenAlchemy/releases/2.3.0 [///]: # "Issue/PR links" [#189]: https://github.com/jdkandersson/OpenAlchemy/issues/189 [#190]: https://github.com/jdkandersson/OpenAlchemy/issues/190 diff --git a/docs/source/conf.py b/docs/source/conf.py index 395dedf9..14b7c27d 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -23,7 +23,7 @@ author = "David Andersson" # The full version, including alpha/beta/rc tags -release = "2.0.0" +release = "2.3.0" # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index 2289a78d..291912b2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "OpenAlchemy" -version = "2.2.0" +version = "2.3.0" description = "Maps an OpenAPI schema to SQLAlchemy models." authors = ["David Andersson "] license = "Apache-2.0" diff --git a/tests/production/Pipfile b/tests/production/Pipfile index 558e1d4a..866842ce 100644 --- a/tests/production/Pipfile +++ b/tests/production/Pipfile @@ -9,7 +9,7 @@ verify_ssl = true name = "open-alchemy-pypi" [packages] -openalchemy = {version="2.2.0", index="open-alchemy-pypi"} +openalchemy = {version="2.3.0", index="open-alchemy-pypi"} connexion = {extras = ["swagger-ui"], version = "2.7.0", index="pypi"} Flask-SQLAlchemy = {version = "2.4.4", index="pypi"}