Skip to content

Commit

Permalink
Merge pull request #353 from airbrake/release-3-0-0-rc-2
Browse files Browse the repository at this point in the history
Release v3.0.0.rc.2
  • Loading branch information
kyrylo authored Oct 30, 2018
2 parents 16b8c8f + 24a9f12 commit 5f4e70b
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,14 @@ Airbrake Ruby Changelog

### master

### [v3.0.0.rc.2][v3.0.0.rc.2] (October 30, 2018)

* **Dropped support for Ruby 2.0**
([#352](https://github.com/airbrake/airbrake-ruby/pull/352))
* Made `Airbrake::Notifier#inspect` less verbose
([#350](https://github.com/airbrake/airbrake-ruby/pull/350))
* Added new dependency `tdigest`. Started sending tdigests to the backend
([#351](https://github.com/airbrake/airbrake-ruby/pull/351))

### [v2.13.0.rc.1][v2.13.0.rc.1] (October 26, 2018)

Expand Down Expand Up @@ -508,3 +514,4 @@ Airbrake Ruby Changelog
[v2.11.0]: https://github.com/airbrake/airbrake-ruby/releases/tag/v2.11.0
[v2.12.0]: https://github.com/airbrake/airbrake-ruby/releases/tag/v2.12.0
[v2.13.0.rc.1]: https://github.com/airbrake/airbrake-ruby/releases/tag/v2.13.0.rc.1
[v3.0.0.rc.2]: https://github.com/airbrake/airbrake-ruby/releases/tag/v3.0.0.rc.2
2 changes: 1 addition & 1 deletion lib/airbrake-ruby.rb
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ def merge_context(context)
# milliseconds
# @param [Time] time When the request happened
# @return [void]
# @since v2.13.0
# @since v3.0.0
def inc_request(method, route, status_code, dur, time)
@notifiers[:default].inc_request(method, route, status_code, dur, time)
end
Expand Down
2 changes: 1 addition & 1 deletion lib/airbrake-ruby/config.rb
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ class Config
# @return [Integer] how many seconds to wait before sending collected route
# stats
# @api public
# @since v2.13.0
# @since v3.0.0
attr_accessor :route_stats_flush_period

# @param [Hash{Symbol=>Object}] user_config the hash to be used to build the
Expand Down
4 changes: 2 additions & 2 deletions lib/airbrake-ruby/route_sender.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
module Airbrake
# RouteSender aggregates information about requests and periodically sends
# collected data to Airbrake.
# @since v2.13.0
# @since v3.0.0
class RouteSender
# Monkey-patch https://github.com/castle/tdigest to pack with Big Endian
# (instead of Little Endian) since our backend wants it.
#
# @see https://github.com/castle/tdigest/blob/master/lib/tdigest/tdigest.rb
# @since v2.13.0
# @since v3.0.0
# @api private
module TDigestBigEndianness
refine TDigest::TDigest do
Expand Down
2 changes: 1 addition & 1 deletion lib/airbrake-ruby/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
# More information: http://semver.org/
module Airbrake
# @return [String] the library version
AIRBRAKE_RUBY_VERSION = '2.13.0.pre.1'.freeze
AIRBRAKE_RUBY_VERSION = '3.0.0.rc.2'.freeze
end

0 comments on commit 5f4e70b

Please sign in to comment.