diff --git a/CHANGELOG.md b/CHANGELOG.md index c0be3aaf3..a009e92ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,12 @@ Airbrake Changelog ### master +### [v7.3.1][v7.3.1] (May 4, 2018) + +* Rack/Rails/Sinatra integrations started attaching their versions to + `context/versions` (was `context/version`) + ([#843](https://github.com/airbrake/airbrake/pull/843)) + ### [v7.3.0][v7.3.0] (April 25, 2018) * New Sidekiq feature: added a filter that ignores error reporting until @@ -402,3 +408,4 @@ Airbrake Changelog [v7.2.0]: https://github.com/airbrake/airbrake/releases/tag/v7.2.0 [v7.2.1]: https://github.com/airbrake/airbrake/releases/tag/v7.2.1 [v7.3.0]: https://github.com/airbrake/airbrake/releases/tag/v7.3.0 +[v7.3.1]: https://github.com/airbrake/airbrake/releases/tag/v7.3.1 diff --git a/lib/airbrake/version.rb b/lib/airbrake/version.rb index 395211bc9..ac7e48062 100644 --- a/lib/airbrake/version.rb +++ b/lib/airbrake/version.rb @@ -1,5 +1,5 @@ # We use Semantic Versioning v2.0.0 # More information: http://semver.org/ module Airbrake - AIRBRAKE_VERSION = '7.3.0'.freeze + AIRBRAKE_VERSION = '7.3.1'.freeze end