diff --git a/CHANGELOG b/CHANGELOG index 449e693..56d53ca 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 a3461c8..1e51b9b 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 c6bc8aa..396473e 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,