From ad7e781e3eccf6e0bc29180fd96c066f85b8e6dc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 8 Jun 2021 12:53:59 +0000 Subject: [PATCH] Prepare for 1.1.0 release --- CHANGELOG | 7 +++++++ README.md | 2 +- build.sbt | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index a99ec868a..ae4452529 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,10 @@ +Version 1.1.0 (2021-06-08) +-------------------------- +Automate the creation of release PR (#498) +Attach jar files to github releases (#447) +Common: use Base64.getDecoder instead of Base64.getUrlDecoder to decode shredder config (#495) +RDB Loader: report metrics to StatsD or Stdout (#384) + Version 1.0.1 (2021-05-19) -------------------------- RDB Loader: bump redshift-jdbc42-no-awssdk from 1.2.51.1078 to 1.2.54.1082 (#393) diff --git a/README.md b/README.md index 16e30fd2f..f4e824bdf 100644 --- a/README.md +++ b/README.md @@ -69,7 +69,7 @@ limitations under the License. [build-image]: https://github.com/snowplow/snowplow-rdb-loader/workflows/Test%20and%20deploy/badge.svg [build]: https://github.com/snowplow/snowplow-rdb-loader/actions?query=workflow%3A%22Test%22 -[release-image]: https://img.shields.io/badge/release-1.0.1-blue.svg?style=flat +[release-image]: https://img.shields.io/badge/release-1.1.0-blue.svg?style=flat [releases]: https://github.com/snowplow/snowplow-rdb-loader/releases [license-image]: https://img.shields.io/badge/license-Apache--2-blue.svg?style=flat diff --git a/build.sbt b/build.sbt index fe169c914..86972802c 100755 --- a/build.sbt +++ b/build.sbt @@ -11,7 +11,7 @@ * See the Apache License Version 2.0 for the specific language governing permissions and limitations there under. */ -ThisBuild / version := "1.0.1" +ThisBuild / version := "1.1.0" lazy val root = project.in(file(".")) .aggregate(common, aws, loader, shredder, streamShredder)