diff --git a/CHANGELOG b/CHANGELOG index 57a13a88..d46d7cd8 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,30 @@ +Version 1.0.0 (2022-08-15) +-------------------------- +Refactor v1 release filters (#192) +Remove support for GCP auth via env vars (#181) +Bump dependencies (#120) +Fix import order (#175) +Allow env var configuration of updated transformation config (#174) +Fix typo in statsd reporting (#158) +Cleanup Makefile (#112) +Make setting of EventHub Partition Key configurable (#148) +Fix latency reporting with no transformations (#108) +Rationalise transformations and transformation config (#169) +Resolve CI caching errors (#164) +Bump to Go 1.18 (#163) +Bump analytics SDK version to v0.3.0 (#131) +Fix bug in makefile that prevents integration-down from completing (#162) +Revamp unit testing project-wide (#129) +Make anything that doesn't need to be exported private (#111) +Add custom transformation layer (#146) +Fail tests on NewConfig error (#145) +Remove AWS Lambda and GCP Cloudfunctions builds (#140) +Add telemetry (#124) +Extend filtering to use custom data (#176) +Use Snyk test to block release if there are vulnerabilities (#119) +Clean up tls configuration (#177) +Allow configuration from a file (#105) + Version 0.8.1 (2022-06-07) -------------------------- Update Sarama package to 1.34 for kafka v3 (#133) diff --git a/README.md b/README.md index fcc32981..135125d7 100644 --- a/README.md +++ b/README.md @@ -60,5 +60,5 @@ Unauthorized copying of this project via any medium is strictly prohibited. Copyright (c) 2020-2022 Snowplow Analytics Ltd. All rights reserved. -[release-image]: http://img.shields.io/badge/golang-0.8.1-6ad7e5.svg?style=flat +[release-image]: http://img.shields.io/badge/golang-1.0.0-6ad7e5.svg?style=flat [releases]: https://github.com/snowplow-devops/stream-replicator/releases/ diff --git a/VERSION b/VERSION index c18d72be..afaf360d 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.8.1 \ No newline at end of file +1.0.0 \ No newline at end of file diff --git a/cmd/constants.go b/cmd/constants.go index fa33693d..c2989eee 100644 --- a/cmd/constants.go +++ b/cmd/constants.go @@ -8,7 +8,7 @@ package cmd const ( // AppVersion is the current version of the replicator - AppVersion = "0.8.1" + AppVersion = "1.0.0" // AppName is the name of the application to use in logging / places that require the artifact AppName = "stream-replicator"