Version bump

This commit is contained in:
Sam Saffron 2022-02-24 11:38:47 +11:00
parent f0167e02a9
commit 267bf94cec
No known key found for this signature in database
GPG Key ID: B9606168D2FFD9F5
2 changed files with 6 additions and 2 deletions

View File

@ -1,6 +1,10 @@
2.0.1 - 2022-02-24
- FIX: ensure threads do not leak when calling #start repeatadly on instrumentation classes, this is an urgent patch for Puma integration
2.0.0 - 2022-02-18
- FEATURE: Add per worker custom labels
- FEATURE: Add per worker custom labels
- FEATURE: support custom histogram buckets
- FIX: all metrics are exposing status label, and not only `http_requests_total`
- BREAKING: rename all `http_duration` metrics to `http_request_duration` to match prometheus official naming conventions (See https://prometheus.io/docs/practices/naming/#metric-names).

View File

@ -1,5 +1,5 @@
# frozen_string_literal: true
module PrometheusExporter
VERSION = '2.0.0'
VERSION = '2.0.1'
end