Skip to content

Releases: stefanwille/crystal-redis

Release 1.5.2

17 Apr 17:07
Compare
Choose a tag to compare
  • hmset now converts its values to string (issue #8)

Release 1.5.1

25 Mar 22:25
Compare
Choose a tag to compare
  • Correctly tag the release.

Release 1.5.0

25 Mar 21:56
Compare
Choose a tag to compare
  • Fix parameter default syntax for Crystal 0.14 (thanks to Don Park). This makes Crystal 0.14 required.

Release 1.4.0

28 Feb 06:12
Compare
Choose a tag to compare

Changes:

  • INCOMPATIBLE API CHANGE: Fix the parameter order of SETEX and PSETEX. According to the official Redis documentation at http://redis.io/commands the setex command is SETEX key seconds value. psetex should be identical to setex except with a ttl time in milliseconds (thanks to Brian Mason).

v1.3.1

02 Feb 10:51
Compare
Choose a tag to compare

Release 1.3.1

New features

  • When connecting to a password protected Redis server, the password can now be passed as constructor parameter. For example: Redis.new(host: "localhost", port: 6379, password: "foobared"). Fixes #10

Release 1.3.0

26 Jan 15:29
Compare
Choose a tag to compare

Changes:

  • Change the Shard name from "crystal-redis" to "redis" (Thanks to Ary Borenszweig)

Release v1.2.1

12 Nov 18:32
Compare
Choose a tag to compare

Changes

  • Fixes issue #8 where large values were not received correctly (thanks Edward Dorrington + Ary Borenszweig)

v1.2.0

18 Oct 18:23
Compare
Choose a tag to compare

Update Crystal-Redis for Crystal 0.9.0.

Release v1.1.0

03 Oct 20:06
Compare
Choose a tag to compare
  • Support Crystal 0.8.0 (thanks to Xanders)
  • This release requires Crystal 0.8.0 or better

Release v1.0.1

10 Aug 19:24
Compare
Choose a tag to compare

Changes:

  • Support Crystal 0.7.5 (thanks to Joris Vanhecke)
  • Improve performance (thanks to Ary Borenszweig)
  • Remove trailing while statement because of Crystal language change
  • Performance optimization
  • Documentation updates