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

Prep for 2.1.1 release

This commit is contained in:
Mike Perham 2015-01-20 09:31:40 -08:00
parent b8917c2e60
commit a87c4a1ec5
2 changed files with 9 additions and 1 deletions

View file

@ -1,3 +1,11 @@
2.1.1
------
- Work around a subtle race condition with code which uses `Timeout.timeout` and
checks out a connection within the timeout block. This might cause
connections to get into a bad state and raise very odd errors. [tamird, #67]
2.1.0
------

View file

@ -1,3 +1,3 @@
class ConnectionPool
VERSION = "2.1.0"
VERSION = "2.1.1"
end