-
Notifications
You must be signed in to change notification settings - Fork 149
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #179 from prometheus/v2_0
Release v2.0
- Loading branch information
Showing
2 changed files
with
28 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# CHANGELOG | ||
|
||
# 2.0.0 / 2020-01-28 | ||
|
||
## Breaking changes | ||
|
||
- [#176](https://github.com/prometheus/client_ruby/pull/176) BUGFIX: Values observed at | ||
the upper limit of a histogram bucket are now counted in that bucket, not the following | ||
one. This is unlikely to break functionality and you probably don't need to make code | ||
changes, but it may break tests. | ||
|
||
## New features | ||
|
||
- [#156](https://github.com/prometheus/client_ruby/pull/156) Added `init_label_set` method, | ||
which allows declaration of time series on app startup, starting at 0. | ||
|
||
|
||
# 1.0.0 / 2019-11-04 | ||
|
||
## Breaking changes | ||
|
||
- This release saw a number of breaking changes to better comply with latest best practices | ||
for naming and client behaviour. Please refer to [UPGRADING.md](UPGRADING.md) for details | ||
if upgrading from `<= 0.9`. | ||
|
||
- The main feature of this release was adding support for multi-process environments such | ||
as pre-fork servers (Unicorn, Puma). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,6 @@ | |
|
||
module Prometheus | ||
module Client | ||
VERSION = '1.0.0' | ||
VERSION = '2.0.0' | ||
end | ||
end |