diff --git a/README.md b/README.md index debe4dd3..519a1c17 100644 --- a/README.md +++ b/README.md @@ -600,13 +600,13 @@ The jars are deployed to [Sonatype's OSS repository](https://oss.sonatype.org/co To use MacWire in your project, add a dependency: ````scala -libraryDependencies += "com.softwaremill.macwire" %% "macros" % "2.3.2" % "provided" +libraryDependencies += "com.softwaremill.macwire" %% "macros" % "2.3.3" % "provided" -libraryDependencies += "com.softwaremill.macwire" %% "macrosakka" % "2.3.2" % "provided" +libraryDependencies += "com.softwaremill.macwire" %% "macrosakka" % "2.3.3" % "provided" -libraryDependencies += "com.softwaremill.macwire" %% "util" % "2.3.2" +libraryDependencies += "com.softwaremill.macwire" %% "util" % "2.3.3" -libraryDependencies += "com.softwaremill.macwire" %% "proxy" % "2.3.2" +libraryDependencies += "com.softwaremill.macwire" %% "proxy" % "2.3.3" ```` The `macros` subproject contains only code which is used at compile-time, hence the `provided` scope. @@ -621,9 +621,9 @@ To use the snapshot version: ````scala resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots" -libraryDependencies += "com.softwaremill.macwire" %% "macros" % "2.3.2-SNAPSHOT" % "provided" +libraryDependencies += "com.softwaremill.macwire" %% "macros" % "2.3.3-SNAPSHOT" % "provided" -libraryDependencies += "com.softwaremill.macwire" %% "util" % "2.3.2-SNAPSHOT" +libraryDependencies += "com.softwaremill.macwire" %% "util" % "2.3.3-SNAPSHOT" ```` Currently 2.x supports Scala 2.11 and 2.12. diff --git a/build.sbt b/build.sbt index 76788087..764fb76e 100644 --- a/build.sbt +++ b/build.sbt @@ -3,7 +3,7 @@ import sbt.Keys._ val commonSettings = Defaults.coreDefaultSettings ++ Seq( organization := "com.softwaremill.macwire", - version := "2.3.2", + version := "2.3.3", scalaVersion := "2.12.8", crossScalaVersions := Seq("2.11.12", scalaVersion.value, "2.13.0"), // Sonatype OSS deployment