From 37dcac81e67a7dd7843cb0cddd26f68a1399a5e6 Mon Sep 17 00:00:00 2001 From: Pete Gadomski Date: Fri, 20 Sep 2024 11:49:19 -0600 Subject: [PATCH] release(python): v0.1.0 --- python/CHANGELOG.md | 9 ++++++++- python/Cargo.toml | 2 +- python/pyproject.toml | 4 ++-- 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/python/CHANGELOG.md b/python/CHANGELOG.md index a60e86da..b5610c3c 100644 --- a/python/CHANGELOG.md +++ b/python/CHANGELOG.md @@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## [Unreleased] +## [0.1.0] - 2024-09-20 + +### Added + - `migrate_href` ([#334](https://github.com/stac-utils/stac-rs/pull/334)) - `search` and `search_to` ([#387](https://github.com/stac-utils/stac-rs/pull/387)) - `read`, `write`, and `pystac` ([#418](https://github.com/stac-utils/stac-rs/pull/418)) @@ -25,7 +29,10 @@ Non-functional release to fix releasing from Github actions. Initial release. -[Unreleased]: https://github.com/stac-utils/stac-rs/compare/python-v0.0.3...main +[Unreleased]: https://github.com/stac-utils/stac-rs/compare/python-v0.1.0...main +[0.1.0]: https://github.com/stac-utils/stac-rs/compare/python-v0.0.3...python-v0.1.0 [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 + + \ No newline at end of file diff --git a/python/Cargo.toml b/python/Cargo.toml index 32988d78..fd650981 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.3" +version = "0.1.0" edition = "2021" publish = false diff --git a/python/pyproject.toml b/python/pyproject.toml index 3d73ed8d..ebe342dd 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -4,12 +4,12 @@ build-backend = "maturin" [project] name = "stacrs" -description = "A small, no-dependency STAC library with Rust under the hood" +description = "A no-dependency Python package for STAC, using Rust under the hood." readme = "README.md" authors = [{ name = "Pete Gadomski", email = "pete.gadomski@gmail.com" }] requires-python = ">=3.8" classifiers = [ - "Development Status :: 3 - Alpha", + "Development Status :: 4 - Beta", "Intended Audience :: Science/Research", "Natural Language :: English", "Programming Language :: Rust",