We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents dca6002 + 55a3e49 commit 5c64546Copy full SHA for 5c64546
2 files changed
CHANGELOG.md
@@ -4,6 +4,19 @@
4
5
_None outstanding_
6
7
+# 4.2.5 / 2025-07-05
8
+
9
+_**Codename:** Surprise dependency_
10
11
+## Small improvements
12
13
+- [#324](https://github.com/prometheus/client_ruby/pull/324) Do not use benchmark gem
14
+ in production:
15
+ Ruby 3.5 is moving `Benchmark` out of default gems, so we need to explicitly install
16
+ it from Rubygems in dev. It turned out we were also using it in prod code, so this PR
17
+ replaced that usage with a small method that makes calls to
18
+ `Process.clock_gettime(Process::CLOCK_MONOTONIC)`.
19
20
# 4.2.4 / 2025-02-02
21
22
_**Codename:** FOSDEM 25th Anniversary Edition_
lib/prometheus/client/version.rb
@@ -2,6 +2,6 @@
2
3
module Prometheus
module Client
- VERSION = '4.2.4'
+ VERSION = '4.2.5'
end
0 commit comments