Skip to content
Debasish Ghosh edited this page May 9, 2015 · 8 revisions

Release 3.0 (May 10, 2015)

  • Issues Fixed: #135, #139, #140
  • API Changes: HyperLogLog APIs now return Option. Sorry for the change in API, but the previous version would cause NullPointerException in pipelining.

Release 2.9 (December 15, 2012)

Features:

  • Runs in Scala 2.10.0-RC5, 2.9.2 and 2.9.1
  • Added some features of Redis 2.6
  • Pull Requests Merged: #52, #54, #59
  • Issues Closed: #52, #53, #54, #56, #57, #58, #59

Release 2.8 (November 11, 2012)

Features:

Release 2.7 (September 22, 2012)

  1. Pull Requests Merged: #23, #25, #27, #28, #29, #34, #35, #36, #41
  2. Issues Closed: #26, #33, #38, #39, #40

Note: Issue #41 (via pull request #41) will cause some existing APIs / clients to break. But it had to be done to ensure proper data type usage for commands like INCR. Note an integer in redis is a signed 64-bit, this is Long in Scala. Treating it like an Int will cause problems in many cases.