Skip to content

Commit bce4a0d

Browse files
author
Maxim Fedorov
committed
Update to 3.0.0 in README.md
1 parent 4815873 commit bce4a0d

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

README.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ The main idea implemented in library is to survive losing connection with Rabbit
55

66
It gives you two actors `ConnectionActor` and `ChannelActor`
77

8-
The Scala 2.10 version uses Akka 2.3.14, while the Scala 2.11 version uses Akka 2.4.1
9-
108
### ConnectionActor
119
* handles connection failures and notifies children
1210
* keep trying to reconnect if connection lost
@@ -29,7 +27,7 @@ using confirms can be found in this project under [ConfirmsExample.scala](https:
2927

3028
``` scala
3129
resolvers += "The New Motion Public Repo" at "http://nexus.thenewmotion.com/content/groups/public/"
32-
libraryDependencies += "com.thenewmotion.akka" %% "akka-rabbitmq" % "2.3"
30+
libraryDependencies += "com.thenewmotion.akka" %% "akka-rabbitmq" % "3.0.0"
3331
```
3432

3533
### Maven
@@ -43,8 +41,8 @@ libraryDependencies += "com.thenewmotion.akka" %% "akka-rabbitmq" % "2.3"
4341
...
4442
<dependency>
4543
<groupId>com.thenewmotion.akka</groupId>
46-
<artifactId>akka-rabbitmq_{2.10/2.11}</artifactId>
47-
<version>2.3</version>
44+
<artifactId>akka-rabbitmq_{2.11/2.12}</artifactId>
45+
<version>3.0.0</version>
4846
</dependency>
4947
```
5048

@@ -94,8 +92,6 @@ But we can do better. Asynchronously:
9492

9593
Synchronously:
9694
```scala
97-
import com.thenewmotion.akka.rabbitmq.reachConnectionActor
98-
9995
val channelActor: ActorRef = connectionActor.createChannel(ChannelActor.props())
10096
```
10197

0 commit comments

Comments
 (0)