diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c9a0009..73a0f823 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.2] - 2021-01-28 + +### Fixed + +- Host templating +- Ansible inventory script + ## [0.3.1] - 2021-01-21 ### Fixed @@ -68,7 +75,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Add reporting policies - Add codeql-analysis -[unreleased]: https://github.com/stacklio/stackl/compare/v0.3.1...HEAD +[unreleased]: https://github.com/stacklio/stackl/compare/v0.3.2...HEAD +[0.3.2]: https://github.com/stacklio/stackl/compare/v0.3.1...v0.3.2 [0.3.1]: https://github.com/stacklio/stackl/compare/v0.3.0...v0.3.1 [0.3.0]: https://github.com/stacklio/stackl/compare/v0.2.6...v0.3.0 [0.2.6]: https://github.com/stacklio/stackl/compare/v0.2.5...v0.2.6 diff --git a/stackl/agent/pyproject.toml b/stackl/agent/pyproject.toml index 10b1c94e..8217700b 100644 --- a/stackl/agent/pyproject.toml +++ b/stackl/agent/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "agent" -version = "0.3.2dev" +version = "0.3.2" description = "" authors = ["Frederic "] diff --git a/stackl/cli/setup.py b/stackl/cli/setup.py index 9e05ee4d..3bbd05b0 100644 --- a/stackl/cli/setup.py +++ b/stackl/cli/setup.py @@ -1,6 +1,6 @@ from setuptools import setup, find_packages -__version__ = "0.3.2dev" +__version__ = "0.3.2" setup( name='stackl-cli', diff --git a/stackl/core/pyproject.toml b/stackl/core/pyproject.toml index 243dff01..80529191 100644 --- a/stackl/core/pyproject.toml +++ b/stackl/core/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "core" -version = "0.3.2dev" +version = "0.3.2" description = "" authors = ["Frederic "]