Skip to content

Commit

Permalink
update antlr4 default to 4.8-1
Browse files Browse the repository at this point in the history
  • Loading branch information
ihji committed Sep 12, 2020
1 parent eecd291 commit 448c6cc
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Put your .g4 files in `src/main/antlr4` directory and make `project/sbt-antlr4.s
file with the following contents:

// sbt 1.1.x
addSbtPlugin("com.simplytyped" % "sbt-antlr4" % "0.8.2")
addSbtPlugin("com.simplytyped" % "sbt-antlr4" % "0.8.3")

// sbt 0.13.x
addSbtPlugin("com.simplytyped" % "sbt-antlr4" % "0.7.13")
Expand Down
2 changes: 2 additions & 0 deletions VERSION.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## Version History

- `0.8.3`: Antlr 4.8-1

- `0.8.2`: Antlr 4.7.2, adding -Werror option (@dilipbiswal)

- `0.7.13`: Antlr 4.7.2, adding -Werror option (@dilipbiswal)
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name := "sbt-antlr4"

organization := "com.simplytyped"

version := "0.8.2"
version := "0.8.3"

bintrayOrganization := Some("simplytyped")

Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/com/simplytyped/Antlr4Plugin.scala
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ object Antlr4Plugin extends AutoPlugin {
sourceDirectory := (sourceDirectory in Compile).value / "antlr4",
javaSource := (sourceManaged in Compile).value / "antlr4",
managedClasspath := Classpaths.managedJars(configuration.value, classpathTypes.value, update.value),
antlr4Version := "4.7.2",
antlr4Version := "4.8-1",
antlr4Generate := antlr4GeneratorTask.value,
antlr4Dependency := "org.antlr" % "antlr4" % antlr4Version.value,
antlr4RuntimeDependency := "org.antlr" % "antlr4-runtime" % antlr4Version.value,
Expand Down

0 comments on commit 448c6cc

Please sign in to comment.