diff --git a/CHANGELOG b/CHANGELOG index b5e7a5545..803dd95ff 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +Release 34 (2020-12-09) +----------------------- +RDB Shredder: escape newlines and tabs (#238) + Release 33 (2020-12-01) ----------------------- Common: integrate coveralls (#220) diff --git a/README.md b/README.md index ede10642d..8552a72a5 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,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-r33-blue.svg?style=flat +[release-image]: https://img.shields.io/badge/release-r34-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 @@ -74,4 +74,4 @@ limitations under the License. [scala-steward]: https://scala-steward.org [coveralls]: https://coveralls.io/github/snowplow/snowplow-rdb-loader?branch=master -[coveralls-image]: https://coveralls.io/repos/github/snowplow/snowplow-rdb-loader/badge.svg?branch=master \ No newline at end of file +[coveralls-image]: https://coveralls.io/repos/github/snowplow/snowplow-rdb-loader/badge.svg?branch=master diff --git a/build.sbt b/build.sbt index ec498492e..d68367fa9 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. */ -version in ThisBuild := "0.18.0" +version in ThisBuild := "0.18.1" lazy val root = project.in(file(".")) .aggregate(common, loader, shredder)