Skip to content

Commit 5219c99

Browse files
committed
Release 2.3.5
1 parent 75135de commit 5219c99

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -602,13 +602,13 @@ The jars are deployed to [Sonatype's OSS repository](https://oss.sonatype.org/co
602602
To 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

614614
The `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
624624
resolvers += "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

631631
Currently 2.x supports Scala 2.11 and 2.12.

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import sbt.Keys._
33

44
val 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

0 commit comments

Comments
 (0)