Skip to content

Commit

Permalink
Release 2.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
adamw committed Jun 12, 2019
1 parent 4463d87 commit 28a68f0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 28a68f0

Please sign in to comment.