From 40adf6ca92c5d6a42e8199e663d81134abf06910 Mon Sep 17 00:00:00 2001 From: Jan Kattelans Date: Mon, 29 Jul 2024 15:35:39 +0200 Subject: [PATCH] Add changelog and bump version --- CHANGELOG.md | 6 ++++++ Gemfile.lock | 2 +- lib/ears/version.rb | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 758071c..c673b6f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 0.14.0 (2024-07-29) + +- **[Breaking]** Adjust Appsignal middleware to use `Appsignal.monitor`. + To use the middleware the `appsignal` gem in version `>= 3.11.0` is required. + The configuration of the middleware changed and now only requires one option `class_name` and an optional `namespace`. + ## 0.13.0 (2023-11-07) - Allow adding multiple routing keys to the consumer configuration, configure method within consumer will only accept `routing_keys` array instead of `routing_key` string diff --git a/Gemfile.lock b/Gemfile.lock index e58e0c4..7e40ccb 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - ears (0.13.0) + ears (0.14.0) bunny (~> 2.22.0) multi_json diff --git a/lib/ears/version.rb b/lib/ears/version.rb index 9dfa7ea..7e51052 100644 --- a/lib/ears/version.rb +++ b/lib/ears/version.rb @@ -1,3 +1,3 @@ module Ears - VERSION = '0.13.0' + VERSION = '0.14.0' end