diff --git a/CHANGELOG.md b/CHANGELOG.md index c1ea43f2..48165166 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +## v0.1.10 (March 13, 2021) + +FEATURES: +* Helm chart allows for creating PodSecurityPolicy [GH-388](https://github.com/KohlsTechnology/eunomia/pull/388) + +CHANGES: +* Update to Go 1.15.8 [GH-387](https://github.com/KohlsTechnology/eunomia/pull/387) + + +BUG FIXES: +* Fix resource deletion edge case [GH-384](https://github.com/KohlsTechnology/eunomia/pull/384) +* Fix broken template processor builds [GH-386](https://github.com/KohlsTechnology/eunomia/pull/386) + ## v0.1.9 (January 18, 2021) Starting with this release the minimum k8s version required for running Eunomia is 1.16. diff --git a/version/version.go b/version/version.go index d49f29bc..564bd6e2 100644 --- a/version/version.go +++ b/version/version.go @@ -21,5 +21,5 @@ var ( Branch string BuildDate string GitSHA1 string - Version = "v0.1.9" + Version = "v0.1.10" )