Skip to content

Commit

Permalink
Release v2.0
Browse files Browse the repository at this point in the history
This includes a bug fix that is a breaking change, so this is a new
major version.

Signed-off-by: Daniel Magliola <danielmagliola@gocardless.com>
  • Loading branch information
Daniel Magliola committed Jan 28, 2020
1 parent 56bd577 commit d616546
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
27 changes: 27 additions & 0 deletions CHANGELOG.md
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).
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 = '1.0.0'
VERSION = '2.0.0'
end
end

0 comments on commit d616546

Please sign in to comment.