Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
blootsvoets committed Dec 23, 2021
1 parent cce7f6d commit 8168a4b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 17 deletions.
20 changes: 4 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
```

Expand Down Expand Up @@ -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'
}
```

Expand All @@ -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'
}
```

Expand All @@ -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'
}
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ plugins {
}

allprojects {
version = '0.13.3-SNAPSHOT'
version = '0.14.0'
group = 'org.radarbase'
}

Expand Down

0 comments on commit 8168a4b

Please sign in to comment.