Skip to content
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Fixed

- Fix `pyproject.toml` description and add various URLs like to homepage, docs, and GitHub repositories. [PR #408](https://github.com/riverqueue/river/pull/408).

## [0.1.0] - 2024-07-04

### Added
Expand Down
9 changes: 8 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
name = "riverqueue"
version = "0.1.0"
description = "Add your description here"
description = "Python insert-only client for River."
authors = [
{ name = "Eric Hauser", email = "ewhauser@gmail.com" },
{ name = "Brandur Leach", email = "brandur@brandur.org" }
Expand All @@ -16,6 +16,13 @@ requires-python = ">= 3.8"
requires = ["hatchling"]
build-backend = "hatchling.build"

[project.urls]
Homepage = "https://riverqueue.com"
Documentation = "https://riverqueue.com/docs"
Repository = "https://github.com/riverqueue/riverqueue-python.git"
Issues = "https://github.com/riverqueue/riverqueue-python/issues"
Changelog = "https://github.com/riverqueue/riverqueue-python/blob/master/CHANGELOG.md"

[tool.rye]
managed = true
dev-dependencies = [
Expand Down