diff --git a/README.md b/README.md index 90ba176..96d4bb0 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Add the plugin according to the [sbt documentation](https://www.scala-sbt.org/1. For instance, add the following lines to `project/plugins.sbt`: ``` -addSbtPlugin("com.github.sbt" % "sbt-avro" % "3.4.3") +addSbtPlugin("com.github.sbt" % "sbt-avro" % "3.5.0") // Java sources compiled with one version of Avro might be incompatible with a // different version of the Avro library. Therefore we specify the compiler diff --git a/build.sbt b/build.sbt index 2a621e0..8deb653 100644 --- a/build.sbt +++ b/build.sbt @@ -2,7 +2,7 @@ ThisBuild / dynverSonatypeSnapshots := true ThisBuild / version := { val orig = (ThisBuild / version).value - if (orig.endsWith("-SNAPSHOT")) "3.4.4-SNAPSHOT" else orig + if (orig.endsWith("-SNAPSHOT")) "3.5.1-SNAPSHOT" else orig } ThisBuild / scalaVersion := "2.12.19"