Skip to content

Commit

Permalink
Release 2.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
julianpeeters committed Aug 15, 2023
1 parent 38ab0a6 commit 853366d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 9 deletions.
7 changes: 1 addition & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.


Expand All @@ -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
Expand Down
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -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)
Expand All @@ -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")

Expand Down

0 comments on commit 853366d

Please sign in to comment.