Skip to content

Commit

Permalink
prepare v0.11.0 release (#498)
Browse files Browse the repository at this point in the history
  • Loading branch information
bgentry authored Aug 3, 2024
1 parent eef80fb commit db1eabf
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 12 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.11.0] - 2024-08-02

### Added

- Expose `Driver` on `Client` for additional River Pro integrations. This is not a stable API and should generally not be used by others. [PR #497](https://github.com/riverqueue/river/pull/497).

## [0.10.2] - 2024-07-31

### Fixed
Expand Down
10 changes: 5 additions & 5 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,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.10.2
github.com/riverqueue/river/riverdriver/riverdatabasesql v0.10.2
github.com/riverqueue/river/riverdriver/riverpgxv5 v0.10.2
github.com/riverqueue/river/rivershared v0.10.2
github.com/riverqueue/river/rivertype v0.10.2
github.com/riverqueue/river/riverdriver v0.11.0
github.com/riverqueue/river/riverdriver/riverdatabasesql v0.11.0
github.com/riverqueue/river/riverdriver/riverpgxv5 v0.11.0
github.com/riverqueue/river/rivershared v0.11.0
github.com/riverqueue/river/rivertype v0.11.0
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 @@ -4,4 +4,4 @@ go 1.21.4

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

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

require (
github.com/lib/pq v1.10.9
github.com/riverqueue/river/riverdriver v0.10.2
github.com/riverqueue/river/rivershared v0.10.2
github.com/riverqueue/river/rivertype v0.10.2
github.com/riverqueue/river/riverdriver v0.11.0
github.com/riverqueue/river/rivershared v0.11.0
github.com/riverqueue/river/rivertype v0.11.0
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 @@ -11,9 +11,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.10.2
github.com/riverqueue/river/rivershared v0.10.2
github.com/riverqueue/river/rivertype v0.10.2
github.com/riverqueue/river/riverdriver v0.11.0
github.com/riverqueue/river/rivershared v0.11.0
github.com/riverqueue/river/rivertype v0.11.0
github.com/stretchr/testify v1.9.0
)

Expand Down

0 comments on commit db1eabf

Please sign in to comment.