diff --git a/CHANGELOG.md b/CHANGELOG.md index d67cdb3..d925222 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,7 +19,17 @@ Release dates will be in YYYY-MM-DD format. ## Unreleased -## 6.3.0 - 2024-04-04 +## 7.0.0 - 2024-04-05 + +### Changed +- Each access-key now retains its own session-token to make switching between access-keys easier. +- When rotation a key, it will first try to use the session-token of the key to be rotated. If that fails, it will fetch a new session-token automatically. + +### Fixed +- Fix setting of access keys +- Rotation of access keys that are not named 'access-key' + +## 6.3.0 - 2024-04-04 (yanked) ### Added - Support for Google cloud projects (thanks to @3cham) diff --git a/app/__version__.py b/app/__version__.py index b99fcb0..ac5def1 100644 --- a/app/__version__.py +++ b/app/__version__.py @@ -1,2 +1,2 @@ -__version__ = (6, 3, 0) +__version__ = (7, 0, 0) __version_string__ = '.'.join(str(i) for i in __version__)