Skip to content

Commit

Permalink
Prepare v0.0.21 release
Browse files Browse the repository at this point in the history
Prepare a new release for `v0.0.21`, with the most important change
contained being #217, which fixes a bug in the leadership election code.

I know I said I'd switch to minor version releases after `v0.0.20`, but
since this version is largely a hotfix with a small change, I did
another patch.
  • Loading branch information
brandur committed Feb 19, 2024
1 parent 9e532a4 commit 8da941d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.0.21] - 2024-02-19

### Changed

- Tweaked behavior of `JobRetry` so that it does actually update the `ScheduledAt` time of the job in all cases where the job is actually being rescheduled. As before, jobs which are already available with a past `ScheduledAt` will not be touched by this query so that they retain their place in line. [PR #211](https://github.com/riverqueue/river/pull/211).
Expand Down
6 changes: 3 additions & 3 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ require (
github.com/jackc/pgx/v5 v5.5.3
github.com/jackc/puddle/v2 v2.2.1
github.com/oklog/ulid/v2 v2.1.0
github.com/riverqueue/river/riverdriver v0.0.20
github.com/riverqueue/river/riverdriver/riverdatabasesql v0.0.20
github.com/riverqueue/river/riverdriver/riverpgxv5 v0.0.20
github.com/riverqueue/river/riverdriver v0.0.21
github.com/riverqueue/river/riverdriver/riverdatabasesql v0.0.21
github.com/riverqueue/river/riverdriver/riverpgxv5 v0.0.21
github.com/robfig/cron/v3 v3.0.1
github.com/spf13/cobra v1.8.0
github.com/stretchr/testify v1.8.4
Expand Down
2 changes: 1 addition & 1 deletion riverdriver/riverdatabasesql/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ replace github.com/riverqueue/river/riverdriver => ../
require (
github.com/jackc/pgx/v5 v5.5.0
github.com/lib/pq v1.10.9
github.com/riverqueue/river/riverdriver v0.0.20
github.com/riverqueue/river/riverdriver v0.0.21
github.com/stretchr/testify v1.8.1
)

Expand Down
2 changes: 1 addition & 1 deletion riverdriver/riverpgxv5/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ replace github.com/riverqueue/river/riverdriver => ../

require (
github.com/jackc/pgx/v5 v5.5.0
github.com/riverqueue/river/riverdriver v0.0.20
github.com/riverqueue/river/riverdriver v0.0.21
github.com/stretchr/testify v1.8.1
)

Expand Down

0 comments on commit 8da941d

Please sign in to comment.