diff --git a/CHANGELOG.md b/CHANGELOG.md index 758071c..dfda0c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.14.0 (2024-07-29) + +- **[Breaking]** Add Appsignal dependency and adjust monitoring + ## 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/ears.gemspec b/ears.gemspec index 231ed5c..7127e4b 100644 --- a/ears.gemspec +++ b/ears.gemspec @@ -32,6 +32,7 @@ Gem::Specification.new do |spec| spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] + spec.add_dependency 'appsignal', '>= 3.12.2' spec.add_dependency 'bunny', '~> 2.22.0' spec.add_dependency 'multi_json' end 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