Skip to content

Commit

Permalink
Release v3.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
RustedBones committed Aug 17, 2023
1 parent 66fd717 commit d6b8fef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,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.2")
addSbtPlugin("com.github.sbt" % "sbt-avro" % "3.4.3")
// Java sources compiled with one version of Avro might be incompatible with a
// different version of the Avro library. Therefore we specify the compiler
Expand Down
3 changes: 1 addition & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
ThisBuild / dynverSonatypeSnapshots := true
ThisBuild / version := {
val orig = (ThisBuild / version).value
if (orig.endsWith("-SNAPSHOT")) "3.4.3-SNAPSHOT"
else orig
if (orig.endsWith("-SNAPSHOT")) "3.4.3-SNAPSHOT" else orig
}
ThisBuild / scalaVersion := "2.12.18"

Expand Down

0 comments on commit d6b8fef

Please sign in to comment.