From d3b8d2ff0d73184af2d862bf9a9dbfc87fb8bfae Mon Sep 17 00:00:00 2001 From: Damian Janowski Date: Tue, 18 Dec 2012 23:48:44 -0300 Subject: [PATCH] Prepare for 0.9.3. --- Changes.md | 17 +++++++++++++++++ lib/connection_pool/version.rb | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/Changes.md b/Changes.md index f9cb923..645cf39 100644 --- a/Changes.md +++ b/Changes.md @@ -1,3 +1,20 @@ +0.9.3 +-------- + +- `#with_connection` is now deprecated in favor of `#with`. + + A warning will be issued in the 0.9 series and the method will be + removed in 1.0. + +- We now reuse objects when possible. + + This means that under no contention, the same object will be checked + out from the pool after subsequent calls to `ConnectionPool#with`. + + This change should have no impact on end user performance. If + anything, it should be an improvement, depending on what objects you + are pooling. + 0.9.2 -------- diff --git a/lib/connection_pool/version.rb b/lib/connection_pool/version.rb index ce4fec6..406cf7f 100644 --- a/lib/connection_pool/version.rb +++ b/lib/connection_pool/version.rb @@ -1,3 +1,3 @@ class ConnectionPool - VERSION = "0.9.2" + VERSION = "0.9.3" end