From d7219631b1aef1a3bb7ecb1a3fb787fa61b90dc8 Mon Sep 17 00:00:00 2001 From: colmsnowplow Date: Thu, 27 Apr 2023 12:47:52 +0100 Subject: [PATCH] Prepared for release --- CHANGELOG | 9 +++++++++ README.md | 2 +- VERSION | 2 +- cmd/constants.go | 2 +- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index bcb3664c..63a3bcad 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,12 @@ +Version 2.1.0 (2023-05-15) +-------------------------- +Fix flaky tests (#277) +Add base64 Decode and Encode transformations (#275) +Reintroduce transformation config via env var (#274) +Patch failure_target_success statsd metric (#272) +Prevent rc images from getting tagged as latest in dockerhub (#282) +Make maximum messages per kinesis put request configurable (#280) + Version 2.0.3 (2023-04-13) -------------------------- Bump to go 1.20 (#268) diff --git a/README.md b/README.md index 82a92e91..74021c42 100644 --- a/README.md +++ b/README.md @@ -18,5 +18,5 @@ The AWS-specific distribution contains everything, including the Kinesis source, To comply with the [Amazon Software License](https://github.com/twitchscience/kinsumer/blob/master/LICENSE), you may only use this distribution of Snowbridge _“with the web services, computing platforms or applications provided by Amazon.com, Inc. or its affiliates, including Amazon Web Services, Inc.”_ -[release-image]: http://img.shields.io/badge/golang-2.0.3-6ad7e5.svg?style=flat +[release-image]: http://img.shields.io/badge/golang-2.1.0-6ad7e5.svg?style=flat [releases]: https://github.com/snowplow/snowbridge/releases/ \ No newline at end of file diff --git a/VERSION b/VERSION index 50ffc5aa..7ec1d6db 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.0.3 +2.1.0 diff --git a/cmd/constants.go b/cmd/constants.go index cdc53594..e41a68f9 100644 --- a/cmd/constants.go +++ b/cmd/constants.go @@ -9,7 +9,7 @@ package cmd const ( // AppVersion is the current version of the app - AppVersion = "2.0.3" + AppVersion = "2.1.0" // AppName is the name of the application to use in logging / places that require the artifact AppName = "snowbridge"