Skip to content

Commit

Permalink
Update avro to 1.11.3
Browse files Browse the repository at this point in the history
  • Loading branch information
RustedBones committed Oct 11, 2023
1 parent bb5224f commit 9d34239
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ 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
// version here explicitly.
libraryDependencies += "org.apache.avro" % "avro-compiler" % "1.11.2"
libraryDependencies += "org.apache.avro" % "avro-compiler" % "1.11.3"
```

Add the library dependency to `build.sbt`:
Expand Down
2 changes: 1 addition & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import sbt._
object Dependencies {

object Versions {
val Avro = "1.11.2"
val Avro = "1.11.3"
val Specs2 = "4.20.2"
}

Expand Down
2 changes: 1 addition & 1 deletion src/sbt-test/sbt-avro/avscparser/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import org.apache.avro.Schema
name := "avscparser-test"
scalaVersion := "2.13.11"
libraryDependencies ++= Seq(
"org.apache.avro" % "avro" % "1.11.2",
"org.apache.avro" % "avro" % "1.11.3",
"org.specs2" %% "specs2-core" % "4.20.2" % Test
)
avroSchemaParserBuilder := AnnotateWithArtifactSchemaParser
Expand Down
2 changes: 1 addition & 1 deletion src/sbt-test/sbt-avro/avscparser/project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ sys.props.get("plugin.version") match {
|Specify this property using the scriptedLaunchOpts -D.""".stripMargin)
}

libraryDependencies += "org.apache.avro" % "avro-compiler" % "1.11.2"
libraryDependencies += "org.apache.avro" % "avro-compiler" % "1.11.3"
2 changes: 1 addition & 1 deletion src/sbt-test/sbt-avro/basic_current/project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ sys.props.get("plugin.version") match {
|Specify this property using the scriptedLaunchOpts -D.""".stripMargin)
}

libraryDependencies += "org.apache.avro" % "avro-compiler" % "1.11.2" // scala-steward:off
libraryDependencies += "org.apache.avro" % "avro-compiler" % "1.11.3"
2 changes: 1 addition & 1 deletion src/sbt-test/sbt-avro/publishing/project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ sys.props.get("plugin.version") match {
|Specify this property using the scriptedLaunchOpts -D.""".stripMargin)
}

libraryDependencies += "org.apache.avro" % "avro-compiler" % "1.11.2"
libraryDependencies += "org.apache.avro" % "avro-compiler" % "1.11.3"
2 changes: 1 addition & 1 deletion src/sbt-test/sbt-avro/sbt_1.3/project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ sys.props.get("plugin.version") match {
|Specify this property using the scriptedLaunchOpts -D.""".stripMargin)
}

libraryDependencies += "org.apache.avro" % "avro-compiler" % "1.11.2"
libraryDependencies += "org.apache.avro" % "avro-compiler" % "1.11.3"
4 changes: 2 additions & 2 deletions src/sbt-test/sbt-avro/settings/project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ sys.props.get("plugin.version") match {
}

libraryDependencies ++= Seq(
"org.apache.avro" % "avro-compiler" % "1.11.2",
"org.apache.avro" % "avro-compiler" % "1.11.3",
// depend on test jar to get some generated records in the build
"org.apache.avro" % "avro" % "1.11.2" classifier "tests"
"org.apache.avro" % "avro" % "1.11.3" classifier "tests"
)

0 comments on commit 9d34239

Please sign in to comment.