diff --git a/_data/version.yml b/_data/version.yml index f8cd7827f..91c3fafb5 100644 --- a/_data/version.yml +++ b/_data/version.yml @@ -1,4 +1,6 @@ scalapb: 0.4.20 sbt_scalapb: 0.4.20 -scalapb5: 0.5.21 -sbt_scalapb5: 0.5.21 +scalapb5: 0.5.26 +sbt_scalapb5: 0.5.26 +protocjarVersion: 3.0.0-b2.1 + diff --git a/grpc.md b/grpc.md index 295bb0a09..4511566bf 100644 --- a/grpc.md +++ b/grpc.md @@ -13,7 +13,7 @@ with protoc-jar add the following to your `project/scalapb.sbt`: addSbtPlugin("com.trueaccord.scalapb" % "sbt-scalapb" % "{{site.data.version.sbt_scalapb5}}") libraryDependencies ++= Seq( - "com.github.os72" % "protoc-jar" % "3.0.0-b2" + "com.github.os72" % "protoc-jar" % "{{site.data.version.protocjarVersion}}" ) In build.sbt, include the following: diff --git a/sbt-settings.md b/sbt-settings.md index 1f2b2304e..de4689ba0 100644 --- a/sbt-settings.md +++ b/sbt-settings.md @@ -106,7 +106,7 @@ not affiliated with ScalaPB. To get started, add the following lines to your {%highlight scala%} libraryDependencies ++= Seq( - "com.github.os72" % "protoc-jar" % "2.x.5" + "com.github.os72" % "protoc-jar" % "{{site.data.version.protocjarVersion}}" ) {%endhighlight%}