diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e40a30..afb7423 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Changelog All notable changes to this project will be documented in this file. +## [1.9.0] - 2026-04-23 +### Added +- Fixed `queue` class variable inheritance for `queue_as` method. + ## [1.8.0] - 2026-03-25 ### Added - Ability to compress data on publisher level and decompress on consumer diff --git a/Gemfile.lock b/Gemfile.lock index 575a135..3949dfb 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -8,7 +8,7 @@ GIT PATH remote: . specs: - rabbit_messaging (1.8.0) + rabbit_messaging (1.9.0) bunny (~> 2.0) kicks msgpack diff --git a/lib/rabbit/event_handler.rb b/lib/rabbit/event_handler.rb index c057e37..a1bb367 100644 --- a/lib/rabbit/event_handler.rb +++ b/lib/rabbit/event_handler.rb @@ -12,6 +12,7 @@ def inherited(subclass) super subclass.ignore_queue_conversion = false subclass.additional_job_configs = {} + subclass.queue = queue end private diff --git a/lib/rabbit/version.rb b/lib/rabbit/version.rb index 118303a..a800416 100644 --- a/lib/rabbit/version.rb +++ b/lib/rabbit/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Rabbit - VERSION = "1.8.0" + VERSION = "1.9.0" end