From 3ed0746c56f9be880259edc9971b87712d5830e7 Mon Sep 17 00:00:00 2001 From: jbeemster Date: Thu, 14 May 2020 14:05:45 +0200 Subject: [PATCH] Prepare for release --- CHANGELOG | 7 +++++++ README.md | 4 ++-- build.sbt | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 449e6939..56d53ca3 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,10 @@ +Version 1.0.0 (2020-07-22) +-------------------------- +Update bad rows sent by ES loader for enriched events (#161) +Bump snowplow-scala-analytics-sdk to 2.0.1 (#170) +Add ability to disable CloudWatch metrics (#160) +Add custom endpoint overrides for Kinesis and DynamoDB (#157) + Version 0.12.1 (2020-05-13) --------------------------- Fix NullPointerException before resharding (#156) diff --git a/README.md b/README.md index a3461c8a..1e51b9bb 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ $ sbt compile The Snowplow Elasticsearch Loader has the following command-line interface: ``` -snowplow-elasticsearch-loader 0.12.1 +snowplow-elasticsearch-loader 1.0.0 Usage: snowplow-elasticsearch-loader [options] @@ -52,7 +52,7 @@ aws { Next, start the loader, making sure to specify your new config file: ```bash -$ java -jar snowplow-elasticsearch-loader-http-0.12.1.jar --config my.conf +$ java -jar snowplow-elasticsearch-loader-http-1.0.0.jar --config my.conf ``` ## Find out more diff --git a/build.sbt b/build.sbt index c6bc8aae..396473e0 100644 --- a/build.sbt +++ b/build.sbt @@ -39,7 +39,7 @@ lazy val commonDependencies = Seq( lazy val buildSettings = Seq( organization := "com.snowplowanalytics", name := "snowplow-elasticsearch-loader", - version := "0.12.1", + version := "1.0.0", description := "Load the contents of a Kinesis stream or NSQ topic to Elasticsearch", scalaVersion := "2.12.10", scalacOptions := BuildSettings.compilerOptions,