diff --git a/CHANGELOG b/CHANGELOG index 56d29cba..b28b46ca 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,16 @@ +Version 3.1.0 (2025-01-20) +-------------------------- +Change License to SLULA 1.1 +Bump alpine version in Dockerfile +More improvements in HTTP client +Bump all dependencies and use latest localstack (#389) +Add option to set kinsumer client name +Improvements to HTTP Connection Pooling (#385) +Update kinsumer to v1.4.0 +Add configuration settings for PubSub source (#380) +Add E2E latency metrics +Configurable time layout in `epoch`/`epochMillis` JQ functions + Version 3.0.0 (2024-11-06) -------------------------- Ensure all timestamps used in reporting are UTC diff --git a/README.md b/README.md index cdb262fc..7a72b455 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-3.0.0-6ad7e5.svg?style=flat +[release-image]: http://img.shields.io/badge/golang-3.1.0-6ad7e5.svg?style=flat [releases]: https://github.com/snowplow/snowbridge/releases/ diff --git a/VERSION b/VERSION index 4a36342f..fd2a0186 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.0.0 +3.1.0 diff --git a/cmd/constants.go b/cmd/constants.go index b08fdb72..6dc59f5e 100644 --- a/cmd/constants.go +++ b/cmd/constants.go @@ -13,7 +13,7 @@ package cmd const ( // AppVersion is the current version of the app - AppVersion = "3.0.0" + AppVersion = "3.1.0" // AppName is the name of the application to use in logging / places that require the artifact AppName = "snowbridge"