diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a3f95d..29b0cb3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,14 @@ All notable changes to this project are documented here. Versions are derived from Git tags via `setuptools_scm` — see [VERSIONING.md](VERSIONING.md). +## 2.0.1 + +### Changed + +- PyPI project links now point at the product rather than only at the repository. `Homepage` is + `https://wavespeed.ai` (it was the GitHub repo), and `Documentation` and `Changelog` entries were + added. No code changes — packaging metadata only. + ## 2.0.0 ### Removed — BREAKING diff --git a/pyproject.toml b/pyproject.toml index 6bf4784..e3800a1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,9 +30,11 @@ dependencies = [ ] [project.urls] -Homepage = "https://github.com/WaveSpeedAI/wavespeed-python" +Homepage = "https://wavespeed.ai" +Documentation = "https://wavespeed.ai/docs/" Repository = "https://github.com/WaveSpeedAI/wavespeed-python" Issues = "https://github.com/WaveSpeedAI/wavespeed-python/issues" +Changelog = "https://github.com/WaveSpeedAI/wavespeed-python/blob/main/CHANGELOG.md" [project.optional-dependencies] test = ["pytest"]