Skip to content

Commit 2f43849

Browse files
committed
Prepare release 3.0.3
1 parent 0f29403 commit 2f43849

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Multiple connections are efficiently managed by the excellent netty NIO
1010
framework. Support for advanced redis features such as Sentinel, Cluster and redis data models
1111
is included.
1212

13-
This version of lettuce has been tested against redis 2.8.13 and 3.0 RC2.
13+
This version of lettuce has been tested against redis 2.8.13 and 3.0 RC3.
1414

1515
* Works with Java 6, 7 and 8
1616
* synchronous and [asynchronous connections](https://github.com/mp911de/lettuce/wiki/Asynchronous-Connections)
@@ -35,7 +35,7 @@ Releases of lettuce are available in the maven central repository. Take also a l
3535
<dependency>
3636
<groupId>biz.paluch.redis</groupId>
3737
<artifactId>lettuce</artifactId>
38-
<version>3.0.2.Final</version>
38+
<version>3.0.3.Final</version>
3939
</dependency>
4040
```
4141

@@ -45,7 +45,7 @@ Shaded JAR-File (packaged dependencies and relocated to the `com.lambdaworks` p
4545
<dependency>
4646
<groupId>biz.paluch.redis</groupId>
4747
<artifactId>lettuce</artifactId>
48-
<version>3.0.2.Final</version>
48+
<version>3.0.3.Final</version>
4949
<classifier>shaded</classifier>
5050
<exclusions>
5151
<exclusion>

RELEASE-NOTES.txt

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
1-
lettuce 3.0.2.Final RELEASE NOTES
1+
lettuce 3.0.3.Final RELEASE NOTES
22

33
This release fixes a memory leak when using PubSub.
44

55
Fixes
66
-----
7-
* Memory leak #21, #22
7+
* Memory leak on connection loss #26
8+
* Fix channel loss on reconnect #27 (Thanks to @kichik)
9+
* Resubscribe even when there are no listeners #30 (Thanks to @kichik)
810

911
Other
1012
-----
11-
* Streamline build and release
13+
* Allow passing server, port and password on command line for tests #29
1214

1315
lettuce requires a minimum of Java 6 to build and run. It is tested against Redis 2.8 and Redis 3.0.
1416

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
<!-- You need a running redis+sentinel for all tests, therefore disabled by default -->
4848
<skipTests>true</skipTests>
4949
<github.site.upload.skip>true</github.site.upload.skip>
50-
<lettuce-release-version>3.0.2.Final</lettuce-release-version>
50+
<lettuce-release-version>3.0.3.Final</lettuce-release-version>
5151
</properties>
5252

5353
<scm>

0 commit comments

Comments
 (0)