Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,18 @@

_None outstanding_

# 4.2.4 / 2025-02-02

_**Codename:** FOSDEM 25th Anniversary Edition_

## Small improvements

- [#316](https://github.com/prometheus/client_ruby/pull/316) Use binary search for
histogram buckets:
This change speeds up observations in histogram metrics by using a binary search
rather than a sequential search through the bucket array. This is possible because
we enforce that histogram buckets are sorted at initialization.

# 4.2.3 / 2024-06-28

_**Codename:** Now with 25% fewer test dependencies!_
Expand Down
2 changes: 1 addition & 1 deletion lib/prometheus/client/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module Prometheus
module Client
VERSION = '4.2.3'
VERSION = '4.2.4'
end
end