diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e190ed0..9fd8e3ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,18 @@ _None outstanding_ +# 4.2.0 / 2023-07-25 + +_**Codename:** Funny number_ + +## Small improvements + +- [#287](https://github.com/prometheus/client_ruby/pull/287) Add `Gauge#set_to_current_time`: + Does what you'd expect - sets a gauge to the current unix epoch timestamp (including + fractional seconds). + + Other client libraries have this and it's about time we did! + # 4.1.0 / 2023-03-20 _**Codename:** They finally made a point release_ diff --git a/lib/prometheus/client/version.rb b/lib/prometheus/client/version.rb index 9d55b4c4..621282e5 100644 --- a/lib/prometheus/client/version.rb +++ b/lib/prometheus/client/version.rb @@ -2,6 +2,6 @@ module Prometheus module Client - VERSION = '4.1.0' + VERSION = '4.2.0' end end