Skip to content

Commit c0ac932

Browse files
stgraceGBrawl
andauthored
Release 0.3.3 (#216)
* Update changelog * Change version to 0.3.3 Co-authored-by: Frederic <[email protected]>
1 parent 8bada3b commit c0ac932

File tree

4 files changed

+24
-5
lines changed

4 files changed

+24
-5
lines changed

CHANGELOG.md

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.3.3] - 2021-02-18
11+
12+
### Fixed
13+
14+
- Wait for all containers in a Stackl job pod to be ready (#198)
15+
- Check if stack instance exists before deleting it (#199)
16+
17+
### Added
18+
19+
- Configurable Vault image for Vault secret handler (#200)
20+
- Secrets can now be supplied for each service (#201)
21+
- Terraform backend can now be set with params
22+
23+
### Changed
24+
25+
- Force delete now tries to delete every functional requirement (#213)
26+
- Error message now also gets logged in agent
27+
1028
## [0.3.2] - 2021-01-28
1129

1230
### Fixed
@@ -75,7 +93,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7593
- Add reporting policies
7694
- Add codeql-analysis
7795

78-
[unreleased]: https://github.com/stacklio/stackl/compare/v0.3.2...HEAD
96+
[unreleased]: https://github.com/stacklio/stackl/compare/v0.3.3...HEAD
97+
[0.3.3]: https://github.com/stacklio/stackl/compare/v0.3.2...v0.3.3
7998
[0.3.2]: https://github.com/stacklio/stackl/compare/v0.3.1...v0.3.2
8099
[0.3.1]: https://github.com/stacklio/stackl/compare/v0.3.0...v0.3.1
81100
[0.3.0]: https://github.com/stacklio/stackl/compare/v0.2.6...v0.3.0

stackl/agent/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "agent"
3-
version = "0.3.3dev"
3+
version = "0.3.3"
44
description = ""
55
authors = ["Frederic <[email protected]>"]
66

stackl/cli/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
from setuptools import setup, find_packages
22

3-
__version__ = "0.3.3dev"
3+
__version__ = "0.3.3"
44

55
setup(
66
name='stackl-cli',
77
version=__version__,
88
py_modules=['stackl', 'commands', 'context'],
99
packages=find_packages(),
1010
install_requires=[
11-
f'stackl-client==0.3.0', 'pyYAML==5.3', 'Click==7.0',
11+
f'stackl-client==0.3.3', 'pyYAML==5.3', 'Click==7.0',
1212
'mergedeep==1.3.0', 'tabulate==0.8.6', 'glom==19.10.0'
1313
],
1414
entry_points='''

stackl/core/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "core"
3-
version = "0.3.3dev"
3+
version = "0.3.3"
44
description = ""
55
authors = ["Frederic <[email protected]>"]
66

0 commit comments

Comments
 (0)