From d75708f6e05d9bba7dfec65880f9a55252f3fd2a Mon Sep 17 00:00:00 2001 From: Jan-Erik Rediger Date: Sat, 16 Jul 2016 17:57:43 +0200 Subject: [PATCH] Release v3.3.1 --- CHANGELOG.md | 5 +++++ lib/redis/version.rb | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ae5506dc5..455e15811 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,11 @@ security updates in June of 2013; continuing to support it would prevent the use of newer features of Ruby. +# 3.3.1 + +* Remove usage of Timeout::timeout, refactor into using low level non-blocking writes. + This fixes a memory leak due to Timeout creating threads on each invocation. + # 3.3.0 * Added support for SSL/TLS. Redis doesn't support SSL natively, so you still diff --git a/lib/redis/version.rb b/lib/redis/version.rb index 3f1fbc020..56f998925 100644 --- a/lib/redis/version.rb +++ b/lib/redis/version.rb @@ -1,3 +1,3 @@ class Redis - VERSION = "3.3.0" + VERSION = "3.3.1" end