Skip to content

Commit

Permalink
Prepare release v0.2.0
Browse files Browse the repository at this point in the history
Tees up the project for version `v0.2.0`. Contains a few small changes
and bug fixes, and with a new periodic job feature from #288.
  • Loading branch information
brandur committed Mar 28, 2024
1 parent 9043557 commit 92f9d46
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 10 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.2.0] - 2024-03-28

### Added

- New periodic jobs can now be added after a client's already started using `Client.PeriodicJobs().Add()` and removed with `Remove()`. [PR #288](https://github.com/riverqueue/river/pull/288).
Expand Down
2 changes: 1 addition & 1 deletion docs/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ queries. After changing an sqlc `.sql` file, generate Go with:

```shell
git checkout master && git pull --rebase
export VERSION=v0.0.x
export VERSION=v0.x.y
go run ./internal/cmd/update-submodule-versions/main.go
```

Expand Down
8 changes: 4 additions & 4 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ require (
github.com/jackc/pgerrcode v0.0.0-20220416144525-469b46aa5efa
github.com/jackc/pgx/v5 v5.5.5
github.com/jackc/puddle/v2 v2.2.1
github.com/riverqueue/river/riverdriver v0.1.0
github.com/riverqueue/river/riverdriver/riverdatabasesql v0.1.0
github.com/riverqueue/river/riverdriver/riverpgxv5 v0.1.0
github.com/riverqueue/river/rivertype v0.1.0
github.com/riverqueue/river/riverdriver v0.2.0
github.com/riverqueue/river/riverdriver/riverdatabasesql v0.2.0
github.com/riverqueue/river/riverdriver/riverpgxv5 v0.2.0
github.com/riverqueue/river/rivertype v0.2.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.1.0
require github.com/riverqueue/river/rivertype v0.2.0
4 changes: 2 additions & 2 deletions riverdriver/riverdatabasesql/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ replace github.com/riverqueue/river/rivertype => ../../rivertype

require (
github.com/lib/pq v1.10.9
github.com/riverqueue/river/riverdriver v0.1.0
github.com/riverqueue/river/rivertype v0.1.0
github.com/riverqueue/river/riverdriver v0.2.0
github.com/riverqueue/river/rivertype v0.2.0
github.com/stretchr/testify v1.8.1
)

Expand Down
4 changes: 2 additions & 2 deletions riverdriver/riverpgxv5/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ 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.1.0
github.com/riverqueue/river/rivertype v0.1.0
github.com/riverqueue/river/riverdriver v0.2.0
github.com/riverqueue/river/rivertype v0.2.0
github.com/stretchr/testify v1.8.1
)

Expand Down

0 comments on commit 92f9d46

Please sign in to comment.