Skip to content

Commit

Permalink
Prepare release v0.11.4 (#542)
Browse files Browse the repository at this point in the history
Prepare release v0.11.4 to fix the bad release in v0.11.3 that was
causing the CLI to become uninstalled as described in #538. The release
script has now been updated in #534 so that the `rivershared` dependency
also gets properly bumped.

I'm also going to try to the `[skip ci]` tag during this release to
hopefully prevent bad caching in the Go proxy and make the release
available sooner.

Fixes #538.

[skip ci]
  • Loading branch information
brandur authored Aug 20, 2024
1 parent c9b154f commit 6068e66
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 19 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Added
## [0.11.4] - 2024-08-20

### Fixed

- A new `river migrate-list` command is available which lists available migrations and which version a target database is migrated to. [PR #534](https://github.com/riverqueue/river/pull/534).
- Fixed release script that caused CLI to become uninstallable because its reference to `rivershared` wasn't updated. [PR #541](https://github.com/riverqueue/river/pull/541).

## [0.11.3] - 2024-08-19

Expand Down
10 changes: 5 additions & 5 deletions cmd/river/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ toolchain go1.23.0
require (
github.com/jackc/pgx/v5 v5.6.0
github.com/lmittmann/tint v1.0.4
github.com/riverqueue/river v0.11.3
github.com/riverqueue/river/riverdriver v0.11.3
github.com/riverqueue/river/riverdriver/riverpgxv5 v0.11.3
github.com/riverqueue/river/rivertype v0.11.3
github.com/riverqueue/river v0.11.4
github.com/riverqueue/river/riverdriver v0.11.4
github.com/riverqueue/river/riverdriver/riverpgxv5 v0.11.4
github.com/riverqueue/river/rivertype v0.11.4
github.com/spf13/cobra v1.8.0
github.com/stretchr/testify v1.9.0
)
Expand All @@ -22,7 +22,7 @@ require (
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
github.com/jackc/puddle/v2 v2.2.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/riverqueue/river/rivershared v0.11.3 // indirect
github.com/riverqueue/river/rivershared v0.11.4 // indirect
github.com/spf13/pflag v1.0.5 // indirect
go.uber.org/goleak v1.3.0 // indirect
golang.org/x/crypto v0.26.0 // indirect
Expand Down
10 changes: 5 additions & 5 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,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.3
github.com/riverqueue/river/riverdriver/riverdatabasesql v0.11.3
github.com/riverqueue/river/riverdriver/riverpgxv5 v0.11.3
github.com/riverqueue/river/rivershared v0.11.3
github.com/riverqueue/river/rivertype v0.11.3
github.com/riverqueue/river/riverdriver v0.11.4
github.com/riverqueue/river/riverdriver/riverdatabasesql v0.11.4
github.com/riverqueue/river/riverdriver/riverpgxv5 v0.11.4
github.com/riverqueue/river/rivershared v0.11.4
github.com/riverqueue/river/rivertype v0.11.4
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

toolchain go1.23.0

require github.com/riverqueue/river/rivertype v0.11.3
require github.com/riverqueue/river/rivertype v0.11.4
6 changes: 3 additions & 3 deletions riverdriver/riverdatabasesql/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ toolchain go1.23.0

require (
github.com/lib/pq v1.10.9
github.com/riverqueue/river/riverdriver v0.11.3
github.com/riverqueue/river/rivershared v0.11.3
github.com/riverqueue/river/rivertype v0.11.3
github.com/riverqueue/river/riverdriver v0.11.4
github.com/riverqueue/river/rivershared v0.11.4
github.com/riverqueue/river/rivertype v0.11.4
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 @@ -7,9 +7,9 @@ toolchain go1.23.0
require (
github.com/jackc/pgx/v5 v5.5.0
github.com/jackc/puddle/v2 v2.2.1
github.com/riverqueue/river/riverdriver v0.11.3
github.com/riverqueue/river/rivershared v0.11.3
github.com/riverqueue/river/rivertype v0.11.3
github.com/riverqueue/river/riverdriver v0.11.4
github.com/riverqueue/river/rivershared v0.11.4
github.com/riverqueue/river/rivertype v0.11.4
github.com/stretchr/testify v1.9.0
)

Expand Down

0 comments on commit 6068e66

Please sign in to comment.