Skip to content

Commit

Permalink
Update avro-compiler to 1.10.1 (#52)
Browse files Browse the repository at this point in the history
* Update avro-compiler to 1.10.1

* Add missing update from scala-steward

Co-authored-by: Michel Davit <michel.davit@gmail.com>
  • Loading branch information
scala-steward and RustedBones authored Dec 16, 2020
1 parent 8a6b13e commit 427a382
Show file tree
Hide file tree
Showing 12 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ addSbtPlugin("com.cavorite" % "sbt-avro" % "3.1.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
// version here explicitly.
libraryDependencies += "org.apache.avro" % "avro-compiler" % "1.10.0"
libraryDependencies += "org.apache.avro" % "avro-compiler" % "1.10.1"
```

Add the library dependency to `build.sbt`:

```
// Version must match that of `avro-compiler` in `project/plugins/sbt`
libraryDependencies += "org.apache.avro" % "avro" % "1.10.0"
libraryDependencies += "org.apache.avro" % "avro" % "1.10.1"
```

## Settings
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

lazy val avroVersion = "1.10.0"
lazy val avroVersion = "1.10.1"
lazy val specs2Version = "4.9.3"

// Provided configuration includes the lib at Runtime
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"

libraryDependencies ++= Seq(
"org.apache.avro" % "avro" % "1.10.0",
"org.apache.avro" % "avro" % "1.10.1",
"org.specs2" %% "specs2-core" % "4.9.4" % Test
)

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.10.0"
libraryDependencies += "org.apache.avro" % "avro-compiler" % "1.10.1"
2 changes: 1 addition & 1 deletion src/sbt-test/sbt-avro/basic_1.10/build.sbt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
name := "basic-test"
scalaVersion := "2.12.11"
libraryDependencies += "org.apache.avro" % "avro" % "1.10.0"
libraryDependencies += "org.apache.avro" % "avro" % "1.10.1"
2 changes: 1 addition & 1 deletion src/sbt-test/sbt-avro/basic_1.10/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.10.0"
libraryDependencies += "org.apache.avro" % "avro-compiler" % "1.10.1"
2 changes: 1 addition & 1 deletion src/sbt-test/sbt-avro/publishing/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ lazy val commonSettings = Seq(
organization := "com.cavorite",
publishTo := Some(Opts.resolver.sonatypeReleases),
libraryDependencies ++= Seq(
"org.apache.avro" % "avro" % "1.10.0"
"org.apache.avro" % "avro" % "1.10.1"
)
)

Expand Down
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.10.0"
libraryDependencies += "org.apache.avro" % "avro-compiler" % "1.10.1"
2 changes: 1 addition & 1 deletion src/sbt-test/sbt-avro/sbt_1.2/build.sbt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
name := "basic-test"
scalaVersion := "2.12.11"
libraryDependencies += "org.apache.avro" % "avro" % "1.10.0"
libraryDependencies += "org.apache.avro" % "avro" % "1.10.1"
2 changes: 1 addition & 1 deletion src/sbt-test/sbt-avro/sbt_1.2/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.10.0"
libraryDependencies += "org.apache.avro" % "avro-compiler" % "1.10.1"
2 changes: 1 addition & 1 deletion src/sbt-test/sbt-avro/settings/build.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name := "settings-test"

libraryDependencies ++= Seq(
"org.apache.avro" % "avro" % "1.10.0",
"org.apache.avro" % "avro" % "1.10.1",
"org.specs2" %% "specs2-core" % "4.9.4" % Test
)

Expand Down
2 changes: 1 addition & 1 deletion src/sbt-test/sbt-avro/settings/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.10.0"
libraryDependencies += "org.apache.avro" % "avro-compiler" % "1.10.1"

0 comments on commit 427a382

Please sign in to comment.