From 3150794122392328382c01136f513a0f197d0c05 Mon Sep 17 00:00:00 2001 From: Piotr Limanowski Date: Wed, 11 Dec 2019 13:30:26 +0100 Subject: [PATCH] Prepare for release --- CHANGELOG | 6 ++++++ README.md | 6 +++--- build.sbt | 2 +- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index c7ab7fe..5cdca3e 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,9 @@ +Version 0.3.0 (2020-01-27) +-------------------------- +Add type partition for bad row partition persistence (#18) +Bump iglu-core to 0.5.1 (#33) +Bump circe to 0.11.2 (#35) + Version 0.2.1 (2020-01-21) -------------------------- Change base docker image to k8s-dataflow:0.1.0 (#36) diff --git a/README.md b/README.md index 5133064..24ae914 100644 --- a/README.md +++ b/README.md @@ -76,7 +76,7 @@ A container can be run as follows: docker run \ -v $PWD/config:/snowplow/config \ -e GOOGLE_APPLICATION_CREDENTIALS=/snowplow/config/credentials.json \ # if running outside GCP - snowplow-docker-registry.bintray.io/snowplow/snowplow-google-cloud-storage-loader:0.2.0 \ + snowplow-docker-registry.bintray.io/snowplow/snowplow-google-cloud-storage-loader:0.3.0 \ --runner=DataFlowRunner \ --jobName=[JOB-NAME] \ --project=[PROJECT] \ @@ -97,14 +97,14 @@ docker run \ To display the help message: ```bash -docker run snowplow-docker-registry.bintray.io/snowplow/snowplow-google-cloud-storage-loader:0.2.0 \ +docker run snowplow-docker-registry.bintray.io/snowplow/snowplow-google-cloud-storage-loader:0.3.0 \ --help ``` To display documentation about Cloud Storage Loader-specific options: ```bash -docker run snowplow-docker-registry.bintray.io/snowplow/snowplow-google-cloud-storage-loader:0.2.0 \ +docker run snowplow-docker-registry.bintray.io/snowplow/snowplow-google-cloud-storage-loader:0.3.0 \ --help=com.snowplowanalytics.storage.googlecloudstorage.loader.Options ``` diff --git a/build.sbt b/build.sbt index 240335e..3b73008 100644 --- a/build.sbt +++ b/build.sbt @@ -28,7 +28,7 @@ lazy val compilerOptions = Seq( lazy val commonSettings = Defaults.coreDefaultSettings ++ Seq( organization := "com.snowplowanalytics", - version := "0.2.1", + version := "0.3.0", scalaVersion := "2.12.10", scalacOptions ++= compilerOptions, javacOptions ++= Seq("-source", "1.8", "-target", "1.8")