From a2bc768803115b15649f9518fc59d30d1b0f50a4 Mon Sep 17 00:00:00 2001 From: Anton Parkhomenko Date: Fri, 6 Aug 2021 18:59:28 +0300 Subject: [PATCH] Prepare for 1.2.0 release --- CHANGELOG | 24 ++++++++++++++++++++++++ README.md | 2 +- build.sbt | 2 +- 3 files changed, 26 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 1c4494e2b..d4b5b4b42 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,27 @@ +Version 1.2.0 (2021-09-03) +-------------------------- +Common: bump sbt-scoverage from 1.6.1 to 1.8.2 (#487) +Common: bump scala-library from 2.12.12 to 2.12.14 (#486) +Common: bump sbt-coveralls from 1.2.7 to 1.3.1 (#516) +Common: bump sbt-tpolecat from 0.1.14 to 0.1.20 (#490) +Common: bump decline from 1.4.0 to 2.1.0 (#529) +Common: bump sbt from 1.5.2 to 1.5.5 (#534) +Common: bump http4s-blaze-client from 0.21.21 to 0.21.25 (#538) +Common: bump slf4j-simple from 1.7.30 to 1.7.32 (#540) +Common: bump iglu-scala-client to 1.1.1 (#541) +Common: bump schema-ddl to 0.14.1 (#536) +RDB Shredder: bump spark-core to 3.1.1 (#544)n +RDB Shredder: integrate Sentry (#510) +RDB Shredder: skip CrossBatchDeduplicationSpec (#462) +RDB Loader: split migration into pre-transaction and in-transaction statements (#548) +RDB Loader: change docker base image to adoptopenjdk:11-jre-hotspot-focal (#543) +RDB Loader: bump doobie-core from 0.12.1 to 0.13.4 (#474) +RDB Loader: bump redshift-jdbc42-no-awssdk from 1.2.54.1082 to 1.2.55.1083 (#535) +RDB Loader: clarify error message when connection acquistion has failed (#525) +RDB Loader: add monitoring for unloaded and corrupted runs (#457) +RDB Loader: add webhook-based alarming (#458) +RDB Loader: manage several parallel connections (#537) + Version 1.1.1 (2021-07-29) -------------------------- RDB Loader: don't raise duplicate SQS message as an error (#542) diff --git a/README.md b/README.md index c01c1000d..1397f712b 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.1.1-blue.svg?style=flat +[release-image]: https://img.shields.io/badge/release-1.2.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 5719333cf..ddb36a9a9 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.1.1" +ThisBuild / version := "1.2.0" lazy val root = project.in(file(".")) .aggregate(common, aws, loader, shredder, streamShredder)