1
0
Fork 0
mirror of https://github.com/mperham/connection_pool synced 2023-03-27 23:22:21 -04:00

Prepare for 0.9.3.

This commit is contained in:
Damian Janowski 2012-12-18 23:48:44 -03:00
parent ae182c844c
commit d3b8d2ff0d
2 changed files with 18 additions and 1 deletions

View file

@ -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
--------

View file

@ -1,3 +1,3 @@
class ConnectionPool
VERSION = "0.9.2"
VERSION = "0.9.3"
end