Skip to content

Commit

Permalink
Link up scheduled job docs from README and Godoc + changelog entry
Browse files Browse the repository at this point in the history
Small follow up to #70 in which we add a link to scheduled jobs from the
features list in the README and Godoc (making it really easy to find by
scanning in either place), along with a changelog entry for the new
example.
  • Loading branch information
brandur committed Nov 26, 2023
1 parent 724cefc commit 289a523
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 0 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.0.10] - 2023-11-26

### Added

- Added `Example_scheduledJob`, demonstrating how to schedule a job to be run in the future.

## [0.0.9] - 2023-11-23

### Fixed
Expand Down
4 changes: 4 additions & 0 deletions doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,9 @@ See the [`InsertAndWork` example] for complete code.
- [Periodic and cron jobs].
- [Scheduled jobs] that run automatically at their scheduled time in the
future.
- [Snoozing jobs] from inside a work function.
- [Subscriptions] to queue activity and statistics, providing easy hooks for
Expand All @@ -139,6 +142,7 @@ See [developing River].
[Cancelling jobs]: https://riverqueue.com/docs/cancelling-jobs
[Error and panic handling]: https://riverqueue.com/docs/error-handling
[Periodic and cron jobs]: https://riverqueue.com/docs/periodic-jobs
[Scheduled jobs]: https://riverqueue.com/docs/scheduled-jobs
[Snoozing jobs]: https://riverqueue.com/docs/snoozing-jobs
[Subscriptions]: https://riverqueue.com/docs/subscriptions
[Transactional job completion]: https://riverqueue.com/docs/transactional-job-completion
Expand Down
4 changes: 4 additions & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,9 @@ See the [`InsertAndWork` example] for complete code.

- [Periodic and cron jobs].

- [Scheduled jobs] that run automatically at their scheduled time in the
future.

- [Snoozing jobs] from inside a work function.

- [Subscriptions] to queue activity and statistics, providing easy hooks for
Expand Down Expand Up @@ -161,6 +164,7 @@ Thank you for driving the software ecosystem forward.
[Cancelling jobs]: https://riverqueue.com/docs/cancelling-jobs
[Error and panic handling]: https://riverqueue.com/docs/error-handling
[Periodic and cron jobs]: https://riverqueue.com/docs/periodic-jobs
[Scheduled jobs]: https://riverqueue.com/docs/scheduled-jobs
[Snoozing jobs]: https://riverqueue.com/docs/snoozing-jobs
[Subscriptions]: https://riverqueue.com/docs/subscriptions
[Transactional job completion]: https://riverqueue.com/docs/transactional-job-completion
Expand Down

0 comments on commit 289a523

Please sign in to comment.