Skip to content

Commit 9ab66b4

Browse files
committed
Release 2.6.7
1 parent 23404b6 commit 9ab66b4

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ To use, add the following dependency:
3131

3232
```
3333
// sbt
34-
"com.softwaremill.macwire" %% "macros" % "2.6.6" % "provided"
34+
"com.softwaremill.macwire" %% "macros" % "2.6.7" % "provided"
3535
3636
// scala-cli
37-
//> using dep com.softwaremill.macwire::macros:2.6.6
37+
//> using dep com.softwaremill.macwire::macros:2.6.7
3838
```
3939

4040
# Table of Contents
@@ -435,7 +435,7 @@ class SocialModule(userModule: UserModule) {
435435
Dependency:
436436

437437
```scala
438-
"com.softwaremill.macwire" %% "util" % "2.6.6"
438+
"com.softwaremill.macwire" %% "util" % "2.6.7"
439439
```
440440

441441
If you are using that pattern a lot, you can annotate your modules using `@Module`, and they will be used when
@@ -457,7 +457,7 @@ class SocialModule(userModule: UserModule) {
457457
Dependency:
458458

459459
```
460-
"com.softwaremill.macwire" %% "proxy" % "2.6.6"
460+
"com.softwaremill.macwire" %% "proxy" % "2.6.7"
461461
```
462462

463463
There are two "built-in" scopes, depending on how the dependency is defined:
@@ -507,7 +507,7 @@ frameworks.
507507
Dependency:
508508

509509
```scala
510-
"com.softwaremill.macwire" %% "util" % "2.6.6"
510+
"com.softwaremill.macwire" %% "util" % "2.6.7"
511511
```
512512

513513
To integrate with some frameworks (e.g. [Play 2](http://www.playframework.com/)) or to create instances of classes
@@ -595,7 +595,7 @@ that the wired class extends, instead of the full implementation.
595595
Dependency:
596596

597597
```scala
598-
"com.softwaremill.macwire" %% "macrosakka" % "2.6.6" % "provided"
598+
"com.softwaremill.macwire" %% "macrosakka" % "2.6.7" % "provided"
599599
```
600600

601601
Macwire provides wiring suport for [akka](http://akka.io) through the `macrosAkka` module.
@@ -770,7 +770,7 @@ The key difference is that `wireSet` returns an unordered `Set[T]` while `wireLi
770770

771771
**Warning**: `autowire` is an experimental feature, if you have any feedback regarding its usage, let us know! Future releases might break source/binary compatibility. It is available for Scala 2 only for now.
772772

773-
Dependency: `"com.softwaremill.macwire" %% "macrosautocats" % "2.6.6"`
773+
Dependency: `"com.softwaremill.macwire" %% "macrosautocats" % "2.6.7"`
774774

775775
In case you need to build an instance from some particular instances and factory methods you can leverage `autowire`. This feature is intended to integrate with effect-management libraries (currently we support [cats-effect](https://github.com/typelevel/cats-effect)).
776776

@@ -828,7 +828,7 @@ object UserModule {
828828
Dependency:
829829

830830
```
831-
"com.softwaremill.macwire" %% "proxy" % "2.6.6"
831+
"com.softwaremill.macwire" %% "proxy" % "2.6.7"
832832
```
833833

834834
MacWire contains an implementation of interceptors, which can be applied to class instances in the modules.

0 commit comments

Comments
 (0)