Skip to content

Commit

Permalink
Release 0.3.3 (#216)
Browse files Browse the repository at this point in the history
* Update changelog

* Change version to 0.3.3

Co-authored-by: Frederic <[email protected]>
  • Loading branch information
stgrace and GBrawl authored Feb 23, 2021
1 parent 8bada3b commit c0ac932
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 5 deletions.
21 changes: 20 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion stackl/agent/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "agent"
version = "0.3.3dev"
version = "0.3.3"
description = ""
authors = ["Frederic <[email protected]>"]

Expand Down
4 changes: 2 additions & 2 deletions stackl/cli/setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
from setuptools import setup, find_packages

__version__ = "0.3.3dev"
__version__ = "0.3.3"

setup(
name='stackl-cli',
version=__version__,
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='''
Expand Down
2 changes: 1 addition & 1 deletion stackl/core/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "core"
version = "0.3.3dev"
version = "0.3.3"
description = ""
authors = ["Frederic <[email protected]>"]

Expand Down

0 comments on commit c0ac932

Please sign in to comment.