diff --git a/python/CHANGELOG.md b/python/CHANGELOG.md index 62783818..fdf98df2 100644 --- a/python/CHANGELOG.md +++ b/python/CHANGELOG.md @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## [Unreleased] +## [0.0.3] - 2024-08-29 + ### Added - `migrate` ([#309](https://github.com/stac-utils/stac-rs/pull/309)) @@ -19,6 +21,7 @@ Non-functional release to fix releasing from Github actions. Initial release. -[Unreleased]: https://github.com/stac-utils/stac-rs/compare/python-v0.0.2...main +[Unreleased]: https://github.com/stac-utils/stac-rs/compare/python-v0.0.3...main +[0.0.3]: https://github.com/stac-utils/stac-rs/compare/python-v0.0.2...python-v0.0.3 [0.0.2]: https://github.com/stac-utils/stac-rs/compare/python-v0.0.1...python-v0.0.2 [0.0.1]: https://github.com/stac-utils/stac-rs/releases/tag/python-v0.0.1 diff --git a/python/Cargo.toml b/python/Cargo.toml index 8b8c91b6..562c839f 100644 --- a/python/Cargo.toml +++ b/python/Cargo.toml @@ -4,7 +4,7 @@ description = "Python bindings for stac-rs" license = "MIT OR Apache-2.0" repository = "https://github.com/stac-utils/stac-rs" homepage = "https://github.com/stac-utils/stac-rs" -version = "0.0.2" +version = "0.0.3" edition = "2021" publish = false diff --git a/python/pyproject.toml b/python/pyproject.toml index 6d8d1a8b..eff7893e 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "stacrs" -description = "A small STAC library with Rust under the hood" +description = "A small, no-dependency STAC library with Rust under the hood" readme = "README.md" authors = [{ name = "Pete Gadomski", email = "pete.gadomski@gmail.com" }] requires-python = ">=3.8" @@ -23,7 +23,7 @@ keywords = ["stac", "geospatial"] dynamic = ["version"] [project.urls] -Repository = "https://github.com/stac-utils/stac-rs/tree/main/python" +Repository = "https://github.com/stac-utils/stac-rs" Documentation = "https://stacrs.readthedocs.io/" Issues = "https://github.com/stac-utils/stac-rs/issues"