File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -602,13 +602,13 @@ The jars are deployed to [Sonatype's OSS repository](https://oss.sonatype.org/co
602602To use MacWire in your project, add a dependency:
603603
604604```` scala
605- libraryDependencies += " com.softwaremill.macwire" %% " macros" % " 2.3.4 " % " provided"
605+ libraryDependencies += " com.softwaremill.macwire" %% " macros" % " 2.3.5 " % " provided"
606606
607- libraryDependencies += " com.softwaremill.macwire" %% " macrosakka" % " 2.3.4 " % " provided"
607+ libraryDependencies += " com.softwaremill.macwire" %% " macrosakka" % " 2.3.5 " % " provided"
608608
609- libraryDependencies += " com.softwaremill.macwire" %% " util" % " 2.3.4 "
609+ libraryDependencies += " com.softwaremill.macwire" %% " util" % " 2.3.5 "
610610
611- libraryDependencies += " com.softwaremill.macwire" %% " proxy" % " 2.3.4 "
611+ libraryDependencies += " com.softwaremill.macwire" %% " proxy" % " 2.3.5 "
612612````
613613
614614The ` macros ` subproject contains only code which is used at compile-time, hence the ` provided ` scope.
@@ -623,9 +623,9 @@ To use the snapshot version:
623623```` scala
624624resolvers += " Sonatype OSS Snapshots" at " https://oss.sonatype.org/content/repositories/snapshots"
625625
626- libraryDependencies += " com.softwaremill.macwire" %% " macros" % " 2.3.4 -SNAPSHOT" % " provided"
626+ libraryDependencies += " com.softwaremill.macwire" %% " macros" % " 2.3.5 -SNAPSHOT" % " provided"
627627
628- libraryDependencies += " com.softwaremill.macwire" %% " util" % " 2.3.4 -SNAPSHOT"
628+ libraryDependencies += " com.softwaremill.macwire" %% " util" % " 2.3.5 -SNAPSHOT"
629629````
630630
631631Currently 2.x supports Scala 2.11 and 2.12.
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import sbt.Keys._
33
44val commonSettings = Defaults .coreDefaultSettings ++ Seq (
55 organization := " com.softwaremill.macwire" ,
6- version := " 2.3.4 " ,
6+ version := " 2.3.5 " ,
77 scalaVersion := " 2.12.11" ,
88 crossScalaVersions := Seq (" 2.11.12" , scalaVersion.value, " 2.13.2" ),
99 // Sonatype OSS deployment
You can’t perform that action at this time.
0 commit comments