From 499711445815ae18b9a8e35d744418e5ca7c327d Mon Sep 17 00:00:00 2001 From: Adora Laura Kalb Date: Fri, 12 Jul 2024 11:18:50 +0200 Subject: [PATCH] bump version to 0.2.1 --- CHANGELOG.md | 9 ++++++++- internal/constants/constants.go | 2 +- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cabe5eb..3213134 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.1] - 2024-07-12 +### Fixed +- Configuration validation did not work as intended + +### Changed +- updated example config file ## [0.2.0] - 2024-07-11 ### ⚠️ Breaking Changes @@ -34,7 +40,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - some documentation -[unreleased]: https://code.lila.network/adoralaura/certwarden-deploy/compare/0.2.0...HEAD +[unreleased]: https://code.lila.network/adoralaura/certwarden-deploy/compare/0.2.1...HEAD +[0.2.1]: https://code.lila.network/adoralaura/certwarden-deploy/compare/0.2.0...0.2.1 [0.2.0]: https://code.lila.network/adoralaura/certwarden-deploy/compare/0.1.1...0.2.0 [0.1.1]: https://code.lila.network/adoralaura/certwarden-deploy/compare/0.1.0...0.1.1 [0.1.0]: https://code.lila.network/adoralaura/certwarden-deploy/releases/tag/0.1.0 diff --git a/internal/constants/constants.go b/internal/constants/constants.go index d010d0c..75f2492 100644 --- a/internal/constants/constants.go +++ b/internal/constants/constants.go @@ -1,6 +1,6 @@ package constants -const Version = "0.2.0" +const Version = "0.2.1" const CertificateApiPath = "/certwarden/api/v1/download/certificates/" const KeyApiPath = "/certwarden/api/v1/download/privatekeys/" const ApiKeyHeaderName = "X-API-Key"