From 9ebad32f9ffebca244565a62d3f6e8ddda7c7f90 Mon Sep 17 00:00:00 2001 From: Kyrylo Silin Date: Thu, 9 Nov 2017 23:06:42 +0200 Subject: [PATCH] Release v2.6.0 --- CHANGELOG.md | 3 +++ README.md | 2 +- lib/airbrake-ruby/version.rb | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e632907d..b939a708 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,8 @@ Airbrake Ruby Changelog ### master +### [v2.6.0][v2.6.0] (November 9, 2017) + * Reworked truncation to not mutate given payload (params) and made it freeze it after the truncation is done (to prevent future mutations) ([#283](https://github.com/airbrake/airbrake-ruby/pull/283)) @@ -387,3 +389,4 @@ Airbrake Ruby Changelog [v2.4.2]: https://github.com/airbrake/airbrake-ruby/releases/tag/v2.4.2 [v2.5.0]: https://github.com/airbrake/airbrake-ruby/releases/tag/v2.5.0 [v2.5.1]: https://github.com/airbrake/airbrake-ruby/releases/tag/v2.5.1 +[v2.6.0]: https://github.com/airbrake/airbrake-ruby/releases/tag/v2.6.0 diff --git a/README.md b/README.md index 91020e74..07a6476d 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ Installation Add the Airbrake Ruby gem to your Gemfile: ```ruby -gem 'airbrake-ruby', '~> 2.5' +gem 'airbrake-ruby', '~> 2.6' ``` ### Manual diff --git a/lib/airbrake-ruby/version.rb b/lib/airbrake-ruby/version.rb index 74cff352..a0d8a4ed 100644 --- a/lib/airbrake-ruby/version.rb +++ b/lib/airbrake-ruby/version.rb @@ -4,5 +4,5 @@ module Airbrake ## # @return [String] the library version - AIRBRAKE_RUBY_VERSION = '2.5.1'.freeze + AIRBRAKE_RUBY_VERSION = '2.6.0'.freeze end