Skip to content

Commit 4f93869

Browse files
There are 2 release series now
1 parent ffda3ad commit 4f93869

File tree

1 file changed

+25
-2
lines changed

1 file changed

+25
-2
lines changed

README.md

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,41 @@ a [Maven repository with milestone releases](https://bintray.com/rabbitmq/maven-
1414

1515
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.rabbitmq/amqp-client/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.rabbitmq/amqp-client)
1616

17+
#### 4.x Series
18+
19+
Starting with `4.0`, this client releases are independent from RabbitMQ server releases.
20+
These versions can still be used with RabbitMQ server `3.x`.
21+
22+
``` xml
23+
<dependency>
24+
<groupId>com.rabbitmq</groupId>
25+
<artifactId>amqp-client</artifactId>
26+
<version>4.0.0</version>
27+
</dependency>
28+
```
29+
30+
### Gradle
31+
32+
``` groovy
33+
compile 'com.rabbitmq:amqp-client:4.0.0'
34+
```
35+
36+
#### 3.6.x Series
37+
38+
`3.6.x` series are released in concert with RabbitMQ server for historical reasons.
39+
1740
``` xml
1841
<dependency>
1942
<groupId>com.rabbitmq</groupId>
2043
<artifactId>amqp-client</artifactId>
21-
<version>3.6.5</version>
44+
<version>3.6.6</version>
2245
</dependency>
2346
```
2447

2548
### Gradle
2649

2750
``` groovy
28-
compile 'com.rabbitmq:amqp-client:3.6.5'
51+
compile 'com.rabbitmq:amqp-client:3.6.6'
2952
```
3053

3154

0 commit comments

Comments
 (0)