Skip to content

Commit 3c05925

Browse files
authored
Prepare release v0.11.0 (#68)
1 parent 568d3b9 commit 3c05925

7 files changed

Lines changed: 11 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.11.0] - 2026-09-02
11+
1012
### Added
1113

1214
- 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).

Gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
PATH
22
remote: .
33
specs:
4-
riverqueue (0.10.1)
4+
riverqueue (0.11.0)
55

66
PATH
77
remote: driver/riverqueue-sequel
88
specs:
9-
riverqueue-sequel (0.10.1)
9+
riverqueue-sequel (0.11.0)
1010
sequel (> 0, < 1000)
1111

1212
GEM

driver/riverqueue-activerecord/Gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
PATH
22
remote: ../..
33
specs:
4-
riverqueue (0.10.1)
4+
riverqueue (0.11.0)
55

66
PATH
77
remote: .
88
specs:
9-
riverqueue-activerecord (0.10.1)
9+
riverqueue-activerecord (0.11.0)
1010
activerecord (> 0, < 1000)
1111
activesupport (> 0, < 1000)
1212

driver/riverqueue-activerecord/riverqueue-activerecord.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Gem::Specification.new do |s|
22
s.name = "riverqueue-activerecord"
3-
s.version = "0.10.1"
3+
s.version = "0.11.0"
44
s.summary = "ActiveRecord PostgreSQL and SQLite driver for the River Ruby gem."
55
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."
66
s.authors = ["Blake Gentry", "Brandur Leach"]

driver/riverqueue-sequel/Gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
PATH
22
remote: ../..
33
specs:
4-
riverqueue (0.10.1)
4+
riverqueue (0.11.0)
55

66
PATH
77
remote: .
88
specs:
9-
riverqueue-sequel (0.10.1)
9+
riverqueue-sequel (0.11.0)
1010
sequel (> 0, < 1000)
1111

1212
GEM

driver/riverqueue-sequel/riverqueue-sequel.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Gem::Specification.new do |s|
22
s.name = "riverqueue-sequel"
3-
s.version = "0.10.1"
3+
s.version = "0.11.0"
44
s.summary = "Sequel PostgreSQL and SQLite driver for the River Ruby gem."
55
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."
66
s.authors = ["Blake Gentry", "Brandur Leach"]

riverqueue.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Gem::Specification.new do |s|
22
s.name = "riverqueue"
3-
s.version = "0.10.1"
3+
s.version = "0.11.0"
44
s.summary = "River is a fast job queue for Go."
55
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."
66
s.authors = ["Blake Gentry", "Brandur Leach"]

0 commit comments

Comments
 (0)