diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b7349569..82f5cc071 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +# 1.8.1 2022-10-12 + +## Fix + +- Fix the request serializer on day 2 operations. `fill_in_survey` was saved as string instead of dict + +## Enhancement + +- Minor UI enhancements + # 1.8.0 2022-10-10 ## Breaking changes ⚠ diff --git a/Squest/version.py b/Squest/version.py index 1c4497bef..2dee7b130 100644 --- a/Squest/version.py +++ b/Squest/version.py @@ -1,2 +1,2 @@ -__version__ = "1.8.1b" +__version__ = "1.8.1" VERSION = __version__ diff --git a/pyproject.toml b/pyproject.toml index 60498fa68..5f0e4df46 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "squest" -version = "1.8.1b" +version = "1.8.1" description = "Service catalog on top of Ansible Tower" authors = ["Nicolas Marcq ", "Elias Boulharts "] license = "MIT"