Skip to content

Commit a0529b9

Browse files
committed
Release 2.6.2
1 parent 4a8812b commit a0529b9

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

+8-8
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.6.1" % "provided"
32+
"com.softwaremill.macwire" %% "macros" % "2.6.2" % "provided"
3333
3434
// scala-cli
35-
//> using dep com.softwaremill.macwire::macros:2.6.1
35+
//> using dep com.softwaremill.macwire::macros:2.6.2
3636
```
3737

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

424424
```scala
425-
"com.softwaremill.macwire" %% "util" % "2.6.1"
425+
"com.softwaremill.macwire" %% "util" % "2.6.2"
426426
```
427427

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

446446
```
447-
"com.softwaremill.macwire" %% "proxy" % "2.6.1"
447+
"com.softwaremill.macwire" %% "proxy" % "2.6.2"
448448
```
449449

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

496496
```scala
497-
"com.softwaremill.macwire" %% "util" % "2.6.1"
497+
"com.softwaremill.macwire" %% "util" % "2.6.2"
498498
```
499499

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

584584
```scala
585-
"com.softwaremill.macwire" %% "macrosakka" % "2.6.1" % "provided"
585+
"com.softwaremill.macwire" %% "macrosakka" % "2.6.2" % "provided"
586586
```
587587

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

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

746-
Dependency: `"com.softwaremill.macwire" %% "macrosautocats" % "2.6.1"`
746+
Dependency: `"com.softwaremill.macwire" %% "macrosautocats" % "2.6.2"`
747747

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

@@ -801,7 +801,7 @@ object UserModule {
801801
Dependency:
802802

803803
```
804-
"com.softwaremill.macwire" %% "proxy" % "2.6.1"
804+
"com.softwaremill.macwire" %% "proxy" % "2.6.2"
805805
```
806806

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

0 commit comments

Comments
 (0)