Skip to content

Commit

Permalink
prep for release
Browse files Browse the repository at this point in the history
  • Loading branch information
mperham committed Jan 7, 2025
1 parent a9ed3e2 commit 4250891
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions Changes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# connection_pool Changelog

2.5.0
------

- Reap idle connections [#187]
```ruby
idle_timeout = 60
pool = ConnectionPool.new ...
pool.reap(idle_timeout, &:close)
```
- `ConnectionPool#idle` returns the count of connections not in use [#187]

2.4.1
------

Expand Down
2 changes: 1 addition & 1 deletion lib/connection_pool/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
class ConnectionPool
VERSION = "2.4.1"
VERSION = "2.5.0"
end

0 comments on commit 4250891

Please sign in to comment.