Skip to content

Commit 30f0ae7

Browse files
committed
Prepare release 0.9.0
I just noticed that we've had an unreleased change sitting in `master` since December since changes in this gem are pretty rare unfortunately. Let's cut a release just so we can get that change (#39) finally shipped out.
1 parent b88abd7 commit 30f0ae7

File tree

7 files changed

+15
-9
lines changed

7 files changed

+15
-9
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.9.0] - 2025-04-11
11+
1012
### Changed
1113

1214
- `by_period` uniqueness is now based off a job's `scheduled_at` instead of the current time if it has a value. [PR #39](https://github.com/riverqueue/riverqueue-ruby/pull/39).
1315

16+
## Fixed
17+
18+
- Correct some mistakes in the readme that referenced `SimpleArgs` instead of `SortArgs`. [PR #44](https://github.com/riverqueue/riverqueue-ruby/pull/44).
19+
1420
## [0.8.0] - 2024-12-19
1521

1622
⚠️ Version 0.8.0 contains breaking changes to transition to River's new unique jobs implementation and to enable broader, more flexible application of unique jobs. Detailed notes on the implementation are contained in [the original River PR](https://github.com/riverqueue/river/pull/590), and the notes below include short summaries of the ways this impacts this client specifically.

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.8.0)
4+
riverqueue (0.9.0)
55

66
PATH
77
remote: driver/riverqueue-sequel
88
specs:
9-
riverqueue-sequel (0.8.0)
9+
riverqueue-sequel (0.9.0)
1010
pg (> 0, < 1000)
1111
sequel (> 0, < 1000)
1212

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.8.0)
4+
riverqueue (0.9.0)
55

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

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.8.0"
3+
s.version = "0.9.0"
44
s.summary = "ActiveRecord driver for the River Ruby gem."
55
s.description = "ActiveRecord 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.8.0)
4+
riverqueue (0.9.0)
55

66
PATH
77
remote: .
88
specs:
9-
riverqueue-sequel (0.8.0)
9+
riverqueue-sequel (0.9.0)
1010
pg (> 0, < 1000)
1111
sequel (> 0, < 1000)
1212

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.8.0"
3+
s.version = "0.9.0"
44
s.summary = "Sequel driver for the River Ruby gem."
55
s.description = "Sequel 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.8.0"
3+
s.version = "0.9.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)