diff --git a/CHANGELOG.md b/CHANGELOG.md index a217798..4a25368 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [0.10.0] - 2026-05-29 +## [0.10.1] - 2026-04-09 + +### Fixed + +- Fix ActiveRecord JSONB args. [PR #60](https://github.com/riverqueue/riverqueue-ruby/pull/60). + +## [0.10.0] - 2026-03-29 ### Changed diff --git a/Gemfile.lock b/Gemfile.lock index c09b8d6..027e76e 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,12 +1,12 @@ PATH remote: . specs: - riverqueue (0.10.0) + riverqueue (0.10.1) PATH remote: driver/riverqueue-sequel specs: - riverqueue-sequel (0.10.0) + riverqueue-sequel (0.10.1) pg (> 0, < 1000) sequel (> 0, < 1000) diff --git a/driver/riverqueue-activerecord/Gemfile.lock b/driver/riverqueue-activerecord/Gemfile.lock index 67ebbfa..33054eb 100644 --- a/driver/riverqueue-activerecord/Gemfile.lock +++ b/driver/riverqueue-activerecord/Gemfile.lock @@ -1,12 +1,12 @@ PATH remote: ../.. specs: - riverqueue (0.10.0) + riverqueue (0.10.1) PATH remote: . specs: - riverqueue-activerecord (0.10.0) + riverqueue-activerecord (0.10.1) activerecord (> 0, < 1000) activesupport (> 0, < 1000) pg (> 0, < 1000) diff --git a/driver/riverqueue-activerecord/riverqueue-activerecord.gemspec b/driver/riverqueue-activerecord/riverqueue-activerecord.gemspec index 97400ac..bc14ee5 100644 --- a/driver/riverqueue-activerecord/riverqueue-activerecord.gemspec +++ b/driver/riverqueue-activerecord/riverqueue-activerecord.gemspec @@ -1,6 +1,6 @@ Gem::Specification.new do |s| s.name = "riverqueue-activerecord" - s.version = "0.10.0" + s.version = "0.10.1" s.summary = "ActiveRecord driver for the River Ruby gem." s.description = "ActiveRecord driver for the River Ruby gem. Use in conjunction with the riverqueue gem to insert jobs that are worked in Go." s.authors = ["Blake Gentry", "Brandur Leach"] diff --git a/driver/riverqueue-sequel/Gemfile.lock b/driver/riverqueue-sequel/Gemfile.lock index 4670252..6446802 100644 --- a/driver/riverqueue-sequel/Gemfile.lock +++ b/driver/riverqueue-sequel/Gemfile.lock @@ -1,12 +1,12 @@ PATH remote: ../.. specs: - riverqueue (0.10.0) + riverqueue (0.10.1) PATH remote: . specs: - riverqueue-sequel (0.10.0) + riverqueue-sequel (0.10.1) pg (> 0, < 1000) sequel (> 0, < 1000) diff --git a/driver/riverqueue-sequel/riverqueue-sequel.gemspec b/driver/riverqueue-sequel/riverqueue-sequel.gemspec index aea5305..32ae6ac 100644 --- a/driver/riverqueue-sequel/riverqueue-sequel.gemspec +++ b/driver/riverqueue-sequel/riverqueue-sequel.gemspec @@ -1,6 +1,6 @@ Gem::Specification.new do |s| s.name = "riverqueue-sequel" - s.version = "0.10.0" + s.version = "0.10.1" s.summary = "Sequel driver for the River Ruby gem." s.description = "Sequel driver for the River Ruby gem. Use in conjunction with the riverqueue gem to insert jobs that are worked in Go." s.authors = ["Blake Gentry", "Brandur Leach"] diff --git a/riverqueue.gemspec b/riverqueue.gemspec index 06ad1ef..e548e0e 100644 --- a/riverqueue.gemspec +++ b/riverqueue.gemspec @@ -1,6 +1,6 @@ Gem::Specification.new do |s| s.name = "riverqueue" - s.version = "0.10.0" + s.version = "0.10.1" s.summary = "River is a fast job queue for Go." s.description = "River is a fast job queue for Go. Use this gem in conjunction with gems riverqueue-activerecord or riverqueue-sequel to insert jobs in Ruby which will be worked from Go." s.authors = ["Blake Gentry", "Brandur Leach"]