From 8168a4ba6808dcb656274d4e061feb0b136005ac Mon Sep 17 00:00:00 2001 From: Joris Borgdorff Date: Thu, 23 Dec 2021 16:30:26 +0100 Subject: [PATCH] Bump version --- README.md | 20 ++++---------------- build.gradle | 2 +- 2 files changed, 5 insertions(+), 17 deletions(-) diff --git a/README.md b/README.md index d609a185..8c41caf7 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ repositories { } dependencies { - implementation group: 'org.radarbase', name: 'radar-commons', version: '0.13.2' + implementation group: 'org.radarbase', name: 'radar-commons', version: '0.14.0' } ``` @@ -69,7 +69,7 @@ repositories { } dependencies { - implementation group: 'org.radarbase', name: 'radar-commons-server', version: '0.13.2' + implementation group: 'org.radarbase', name: 'radar-commons-server', version: '0.14.0' } ``` @@ -82,19 +82,7 @@ repositories { } dependencies { - testImplementation group: 'org.radarbase', name: 'radar-commons-testing', version: '0.13.2' -} -``` - -Finally, if the schema registry is losing old schemas and your code is not recovering, include `radar-commons-unsafe`. Ensure that it comes in the classpath before any Confluent code. This will override the Confluent Avro deserializer to recover from failure when a message with unknown schema ID is passed. -```gradle -repositories { - mavenCentral() - maven { url 'https://packages.confluent.io/maven/' } -} - -dependencies { - runtimeOnly group: 'org.radarbase', name: 'radar-commons-unsafe', version: '0.13.2' + testImplementation group: 'org.radarbase', name: 'radar-commons-testing', version: '0.14.0' } ``` @@ -119,7 +107,7 @@ configurations.all { } dependencies { - compile group: 'org.radarbase', name: 'radar-commons', version: '0.13.3-SNAPSHOT' + compile group: 'org.radarbase', name: 'radar-commons', version: '0.14.1-SNAPSHOT' } ``` diff --git a/build.gradle b/build.gradle index 8b560614..d17019e8 100644 --- a/build.gradle +++ b/build.gradle @@ -20,7 +20,7 @@ plugins { } allprojects { - version = '0.13.3-SNAPSHOT' + version = '0.14.0' group = 'org.radarbase' }