diff --git a/README.md b/README.md index 9971ef2..27d39dd 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,5 @@ # sbt-avrohugger - -[![Scala CI](https://github.com/julianpeeters/sbt-avrohugger/workflows/Scala%20CI/badge.svg)](https://github.com/julianpeeters/sbt-avrohugger/actions?query=workflow%3A%22Scala+CI%22) -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.julianpeeters/sbt-avrohugger/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.julianpeeters/sbt-avrohugger) - - sbt plugin for generating Scala case classes and ADTs from Apache Avro schemas, datafiles, and protocols. @@ -14,7 +9,7 @@ Install the plugin (compatible with sbt 1.3+) Add the following lines to the file ``myproject/project/plugins.sbt`` in your project directory: - addSbtPlugin("com.julianpeeters" % "sbt-avrohugger" % "2.5.1") + addSbtPlugin("com.julianpeeters" % "sbt-avrohugger" % "2.5.2") _NOTE:_ On **Nexus**, please set nexus proxy layout to `permissive` in to resolve artifacts with a sbt-version suffixes diff --git a/build.sbt b/build.sbt index 6e1ac25..4c8618e 100644 --- a/build.sbt +++ b/build.sbt @@ -1,6 +1,6 @@ ThisBuild / organization := "com.julianpeeters" ThisBuild / description := "Sbt plugin for compiling Avro to Scala" -ThisBuild / version := "2.5.2-SNAPSHOT" +ThisBuild / version := "2.5.2" ThisBuild / versionScheme := Some("semver-spec") enablePlugins(SbtPlugin) @@ -14,8 +14,8 @@ ThisBuild / crossSbtVersions := Seq(sbtVersion.value) ThisBuild / scalacOptions ++= Seq("-unchecked", "-deprecation", "-feature", "-Ywarn-value-discard") ThisBuild / libraryDependencies ++= Seq( - "com.julianpeeters" %% "avrohugger-core" % "1.5.2-SNAPSHOT", - "com.julianpeeters" %% "avrohugger-filesorter" % "1.5.2-SNAPSHOT", + "com.julianpeeters" %% "avrohugger-core" % "1.5.2", + "com.julianpeeters" %% "avrohugger-filesorter" % "1.5.2", "io.spray" %% "spray-json" % "1.3.6", "org.specs2" %% "specs2-core" % "4.20.0" % "test")