From c0ac932b37ec72b6612c2351e17308a22966e939 Mon Sep 17 00:00:00 2001 From: Stef Graces Date: Tue, 23 Feb 2021 11:12:39 +0100 Subject: [PATCH] Release 0.3.3 (#216) * Update changelog * Change version to 0.3.3 Co-authored-by: Frederic --- CHANGELOG.md | 21 ++++++++++++++++++++- stackl/agent/pyproject.toml | 2 +- stackl/cli/setup.py | 4 ++-- stackl/core/pyproject.toml | 2 +- 4 files changed, 24 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 73a0f823..19af34ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.3] - 2021-02-18 + +### Fixed + +- Wait for all containers in a Stackl job pod to be ready (#198) +- Check if stack instance exists before deleting it (#199) + +### Added + +- Configurable Vault image for Vault secret handler (#200) +- Secrets can now be supplied for each service (#201) +- Terraform backend can now be set with params + +### Changed + +- Force delete now tries to delete every functional requirement (#213) +- Error message now also gets logged in agent + ## [0.3.2] - 2021-01-28 ### Fixed @@ -75,7 +93,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.2...HEAD +[unreleased]: https://github.com/stacklio/stackl/compare/v0.3.3...HEAD +[0.3.3]: https://github.com/stacklio/stackl/compare/v0.3.2...v0.3.3 [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 diff --git a/stackl/agent/pyproject.toml b/stackl/agent/pyproject.toml index 25c27873..c96caeac 100644 --- a/stackl/agent/pyproject.toml +++ b/stackl/agent/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "agent" -version = "0.3.3dev" +version = "0.3.3" description = "" authors = ["Frederic "] diff --git a/stackl/cli/setup.py b/stackl/cli/setup.py index 3a35701f..ef542624 100644 --- a/stackl/cli/setup.py +++ b/stackl/cli/setup.py @@ -1,6 +1,6 @@ from setuptools import setup, find_packages -__version__ = "0.3.3dev" +__version__ = "0.3.3" setup( name='stackl-cli', @@ -8,7 +8,7 @@ py_modules=['stackl', 'commands', 'context'], packages=find_packages(), install_requires=[ - f'stackl-client==0.3.0', 'pyYAML==5.3', 'Click==7.0', + f'stackl-client==0.3.3', 'pyYAML==5.3', 'Click==7.0', 'mergedeep==1.3.0', 'tabulate==0.8.6', 'glom==19.10.0' ], entry_points=''' diff --git a/stackl/core/pyproject.toml b/stackl/core/pyproject.toml index 7a0cc672..0bdd19cb 100644 --- a/stackl/core/pyproject.toml +++ b/stackl/core/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "core" -version = "0.3.3dev" +version = "0.3.3" description = "" authors = ["Frederic "]