From b315aad8a14ace17c2c655205139b2606e0de263 Mon Sep 17 00:00:00 2001 From: Brandur Date: Wed, 2 Sep 2026 14:45:26 +0800 Subject: [PATCH] Prepare release v0.11.0 --- CHANGELOG.md | 2 ++ Gemfile.lock | 4 ++-- driver/riverqueue-activerecord/Gemfile.lock | 4 ++-- .../riverqueue-activerecord/riverqueue-activerecord.gemspec | 2 +- driver/riverqueue-sequel/Gemfile.lock | 4 ++-- driver/riverqueue-sequel/riverqueue-sequel.gemspec | 2 +- riverqueue.gemspec | 2 +- 7 files changed, 11 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f1a666..0283d24 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.11.0] - 2026-09-02 + ### Added - Add SQLite support to the ActiveRecord and Sequel drivers, including current River JSONB storage, atomic bulk inserts, unique jobs, and notification-outbox writes. [PR #67](https://github.com/riverqueue/riverqueue-ruby/pull/67). diff --git a/Gemfile.lock b/Gemfile.lock index 222dba6..e6bb42c 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,12 +1,12 @@ PATH remote: . specs: - riverqueue (0.10.1) + riverqueue (0.11.0) PATH remote: driver/riverqueue-sequel specs: - riverqueue-sequel (0.10.1) + riverqueue-sequel (0.11.0) sequel (> 0, < 1000) GEM diff --git a/driver/riverqueue-activerecord/Gemfile.lock b/driver/riverqueue-activerecord/Gemfile.lock index 5e38765..b372758 100644 --- a/driver/riverqueue-activerecord/Gemfile.lock +++ b/driver/riverqueue-activerecord/Gemfile.lock @@ -1,12 +1,12 @@ PATH remote: ../.. specs: - riverqueue (0.10.1) + riverqueue (0.11.0) PATH remote: . specs: - riverqueue-activerecord (0.10.1) + riverqueue-activerecord (0.11.0) activerecord (> 0, < 1000) activesupport (> 0, < 1000) diff --git a/driver/riverqueue-activerecord/riverqueue-activerecord.gemspec b/driver/riverqueue-activerecord/riverqueue-activerecord.gemspec index 46b4c3a..48736d3 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.1" + s.version = "0.11.0" s.summary = "ActiveRecord PostgreSQL and SQLite driver for the River Ruby gem." s.description = "ActiveRecord PostgreSQL and SQLite 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 1c6d81f..26e5981 100644 --- a/driver/riverqueue-sequel/Gemfile.lock +++ b/driver/riverqueue-sequel/Gemfile.lock @@ -1,12 +1,12 @@ PATH remote: ../.. specs: - riverqueue (0.10.1) + riverqueue (0.11.0) PATH remote: . specs: - riverqueue-sequel (0.10.1) + riverqueue-sequel (0.11.0) sequel (> 0, < 1000) GEM diff --git a/driver/riverqueue-sequel/riverqueue-sequel.gemspec b/driver/riverqueue-sequel/riverqueue-sequel.gemspec index 95428aa..c3f18a7 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.1" + s.version = "0.11.0" s.summary = "Sequel PostgreSQL and SQLite driver for the River Ruby gem." s.description = "Sequel PostgreSQL and SQLite 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 e548e0e..84db7b6 100644 --- a/riverqueue.gemspec +++ b/riverqueue.gemspec @@ -1,6 +1,6 @@ Gem::Specification.new do |s| s.name = "riverqueue" - s.version = "0.10.1" + s.version = "0.11.0" 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"]