diff --git a/deployments/k8s-openshift/deploy.yml b/deployments/k8s-openshift/deploy.yml index 2078346..cc3bb17 100644 --- a/deployments/k8s-openshift/deploy.yml +++ b/deployments/k8s-openshift/deploy.yml @@ -97,7 +97,7 @@ spec: secretKeyRef: name: creds key: pass - image: utrecht/yaam:0.2.1 + image: utrecht/yaam:v0.2.1 readinessProbe: tcpSocket: port: 25213 diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 2593e4a..a77da59 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [v0.2.1] - 2022-08-23 + ### Added - debug logging option. @@ -22,7 +24,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - the origin of various functions to pkg to ensure they can be imported as a library by external resources. -## [0.2.0] - 2022-08-20 +## [v0.2.0] - 2022-08-20 ### Added @@ -37,12 +39,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Golang version to 1.19. - port to 25213. -## [0.1.0] - 2022-07-17 +## [v0.1.0] - 2022-07-17 ### Added - Cache all Maven2 artifacts that are required by a gradle project locally. -[Unreleased]: https://github.com/030/yaam/compare/0.2.0...HEAD -[0.2.0]: https://github.com/030/yaam/compare/0.1.0...0.2.0 -[0.1.0]: https://github.com/030/yaam/releases/tag/0.1.0 +[Unreleased]: https://github.com/030/yaam/compare/v0.2.1...HEAD +[v0.2.1]: https://github.com/030/yaam/compare/v0.2.0...0.2.1 +[v0.2.0]: https://github.com/030/yaam/compare/v0.1.0...0.2.0 +[v0.1.0]: https://github.com/030/yaam/releases/tag/v0.1.0 diff --git a/docs/usage/DOCKER.md b/docs/usage/DOCKER.md index 3eac3cf..fd85ffc 100644 --- a/docs/usage/DOCKER.md +++ b/docs/usage/DOCKER.md @@ -9,5 +9,5 @@ docker run \ -e YAAM_USER=hello \ -e YAAM_PASS=world \ -p 25213:25213 \ - -it utrecht/yaam:0.2.1 + -it utrecht/yaam:v0.2.1 ```