Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare release v0.11.1 #506

Merged
merged 1 commit into from
Aug 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.11.1] - 2024-08-05

### Fixed

- `database/sql` driver: fix default value of `scheduled_at` for `InsertManyTx` when it is not specified in `InsertOpts`. [PR #504](https://github.com/riverqueue/river/pull/504).
Expand Down
1 change: 1 addition & 0 deletions docs/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ queries. After changing an sqlc `.sql` file, generate Go with:
git checkout master && git pull --rebase
export VERSION=v0.x.y
go run ./internal/cmd/update-submodule-versions/main.go
git checkout -b $USER-$VERSION
```

2. Prepare a PR with the changes, updating `CHANGELOG.md` with any necessary additions at the same time. Have it reviewed and merged.
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.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/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/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.11.0
require github.com/riverqueue/river/rivertype v0.11.1
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.11.0
github.com/riverqueue/river/rivershared v0.11.0
github.com/riverqueue/river/rivertype v0.11.0
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/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.11.0
github.com/riverqueue/river/rivershared v0.11.0
github.com/riverqueue/river/rivertype v0.11.0
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/stretchr/testify v1.9.0
)

Expand Down
Loading