diff --git a/CHANGELOG.md b/CHANGELOG.md index 36c71276e..fc684b4d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +# 1.10.0 2023-03-07 + +## Fix + +- Fix SQUEST_EMAIL_HOST env var to match the behavior described in the doc. Removed hard coded `squest@`. ⚠️may break your config if @ is not set. + +## Feature + +- CVS export on resource pool page +- add PostgreSQL database support +- add a custom note into the login page + # 1.9.0 2022-12-14 ## Breaking changes ⚠ diff --git a/Squest/version.py b/Squest/version.py index f592bfdcb..5e87f1661 100644 --- a/Squest/version.py +++ b/Squest/version.py @@ -1,2 +1,2 @@ -__version__ = "1.9.1b" +__version__ = "1.10.0" VERSION = __version__ diff --git a/pyproject.toml b/pyproject.toml index 589eab8f2..09e07e2f2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "squest" -version = "1.9.1b" +version = "1.10.0" description = "Service catalog on top of Ansible Tower" authors = ["Nicolas Marcq ", "Elias Boulharts "] license = "MIT"