Skip to content

Commit cb4b512

Browse files
committed
Release 2.6.0
1 parent 0399bee commit cb4b512

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
@@ -29,10 +29,10 @@ To use, add the following dependency:
2929

3030
```
3131
// sbt
32-
"com.softwaremill.macwire" %% "macros" % "2.5.9" % "provided"
32+
"com.softwaremill.macwire" %% "macros" % "2.6.0" % "provided"
3333
3434
// scala-cli
35-
//> using dep com.softwaremill.macwire::macros:2.5.9
35+
//> using dep com.softwaremill.macwire::macros:2.6.0
3636
```
3737

3838
# Table of Contents
@@ -421,7 +421,7 @@ class SocialModule(userModule: UserModule) {
421421
Dependency:
422422

423423
```scala
424-
"com.softwaremill.macwire" %% "util" % "2.5.9"
424+
"com.softwaremill.macwire" %% "util" % "2.6.0"
425425
```
426426

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

445445
```
446-
"com.softwaremill.macwire" %% "proxy" % "2.5.9"
446+
"com.softwaremill.macwire" %% "proxy" % "2.6.0"
447447
```
448448

449449
There are two "built-in" scopes, depending on how the dependency is defined:
@@ -493,7 +493,7 @@ frameworks.
493493
Dependency:
494494

495495
```scala
496-
"com.softwaremill.macwire" %% "util" % "2.5.9"
496+
"com.softwaremill.macwire" %% "util" % "2.6.0"
497497
```
498498

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

583583
```scala
584-
"com.softwaremill.macwire" %% "macrosakka" % "2.5.9" % "provided"
584+
"com.softwaremill.macwire" %% "macrosakka" % "2.6.0" % "provided"
585585
```
586586

587587
Macwire provides wiring suport for [akka](http://akka.io) through the `macrosAkka` module.
@@ -742,7 +742,7 @@ trait RockBandModule {
742742

743743
**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.
744744

745-
Dependency: `"com.softwaremill.macwire" %% "macrosautocats" % "2.5.9"`
745+
Dependency: `"com.softwaremill.macwire" %% "macrosautocats" % "2.6.0"`
746746

747747
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)).
748748

@@ -800,7 +800,7 @@ object UserModule {
800800
Dependency:
801801

802802
```
803-
"com.softwaremill.macwire" %% "proxy" % "2.5.9"
803+
"com.softwaremill.macwire" %% "proxy" % "2.6.0"
804804
```
805805

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

0 commit comments

Comments
 (0)