Skip to content

Commit

Permalink
Prepare release v0.11.2
Browse files Browse the repository at this point in the history
Prepare release v0.11.2, containing #504 and #505. This will also
require a separate CLI release because of some minimum Go version
changes in all the project's `go.mod` files.
  • Loading branch information
brandur committed Aug 9, 2024
1 parent f9619a0 commit 0de8337
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 12 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed

## [0.11.2] - 2024-08-08

- Derive all internal contexts from user-provided `Client` context. This includes the job fetch context, notifier unlisten, and completer. [PR #514](https://github.com/riverqueue/river/pull/514).
- Lowered the `go` directives in `go.mod` to Go 1.21, which River aims to support. A more modern version of Go is specified with the `toolchain` directive. This should provide more flexibility on the minimum required Go version for programs importing River. [PR #522](https://github.com/riverqueue/river/pull/522).

Expand Down
10 changes: 5 additions & 5 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ require (
github.com/jackc/pgerrcode v0.0.0-20220416144525-469b46aa5efa
github.com/jackc/pgx/v5 v5.6.0
github.com/jackc/puddle/v2 v2.2.1
github.com/riverqueue/river/riverdriver v0.11.1
github.com/riverqueue/river/riverdriver/riverdatabasesql v0.11.1
github.com/riverqueue/river/riverdriver/riverpgxv5 v0.11.1
github.com/riverqueue/river/rivershared v0.11.1
github.com/riverqueue/river/rivertype v0.11.1
github.com/riverqueue/river/riverdriver v0.11.2
github.com/riverqueue/river/riverdriver/riverdatabasesql v0.11.2
github.com/riverqueue/river/riverdriver/riverpgxv5 v0.11.2
github.com/riverqueue/river/rivershared v0.11.2
github.com/riverqueue/river/rivertype v0.11.2
github.com/robfig/cron/v3 v3.0.1
github.com/stretchr/testify v1.9.0
go.uber.org/goleak v1.3.0
Expand Down
2 changes: 1 addition & 1 deletion riverdriver/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ toolchain go1.22.5

replace github.com/riverqueue/river/rivertype => ../rivertype

require github.com/riverqueue/river/rivertype v0.11.1
require github.com/riverqueue/river/rivertype v0.11.2
6 changes: 3 additions & 3 deletions riverdriver/riverdatabasesql/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ replace github.com/riverqueue/river/rivertype => ../../rivertype

require (
github.com/lib/pq v1.10.9
github.com/riverqueue/river/riverdriver v0.11.1
github.com/riverqueue/river/rivershared v0.11.1
github.com/riverqueue/river/rivertype v0.11.1
github.com/riverqueue/river/riverdriver v0.11.2
github.com/riverqueue/river/rivershared v0.11.2
github.com/riverqueue/river/rivertype v0.11.2
github.com/stretchr/testify v1.9.0
)

Expand Down
6 changes: 3 additions & 3 deletions riverdriver/riverpgxv5/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ replace github.com/riverqueue/river/rivertype => ../../rivertype
require (
github.com/jackc/pgx/v5 v5.5.0
github.com/jackc/puddle/v2 v2.2.1
github.com/riverqueue/river/riverdriver v0.11.1
github.com/riverqueue/river/rivershared v0.11.1
github.com/riverqueue/river/rivertype v0.11.1
github.com/riverqueue/river/riverdriver v0.11.2
github.com/riverqueue/river/rivershared v0.11.2
github.com/riverqueue/river/rivertype v0.11.2
github.com/stretchr/testify v1.9.0
)

Expand Down

0 comments on commit 0de8337

Please sign in to comment.