From a3eb076da359e9d4b9e9bf569225bcd662a92ef5 Mon Sep 17 00:00:00 2001 From: Pete Gadomski Date: Tue, 12 Nov 2024 11:36:02 -0700 Subject: [PATCH] release: stac v0.11.0 (#522) --- Cargo.toml | 2 +- crates/core/CHANGELOG.md | 5 ++++- crates/core/Cargo.toml | 2 +- crates/core/README.md | 2 +- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d698f059..fe4610b7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -73,7 +73,7 @@ rustls = { version = "0.23.14", default-features = false } serde = "1.0" serde_json = "1.0" serde_urlencoded = "0.7.1" -stac = { version = "0.10.2", path = "crates/core" } +stac = { version = "0.11.0", path = "crates/core" } stac-api = { version = "0.6.2", path = "crates/api" } stac-derive = { version = "0.1.0", path = "crates/derive" } stac-duckdb = { version = "0.0.2", path = "crates/duckdb" } diff --git a/crates/core/CHANGELOG.md b/crates/core/CHANGELOG.md index d7c066f7..ace37a09 100644 --- a/crates/core/CHANGELOG.md +++ b/crates/core/CHANGELOG.md @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## [Unreleased] +## [0.11.0] - 2024-11-12 + ### Added - `version` ([#476](https://github.com/stac-utils/stac-rs/pull/476)) @@ -406,7 +408,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), Initial release. -[Unreleased]: https://github.com/stac-utils/stac-rs/compare/stac-v0.10.2...main +[Unreleased]: https://github.com/stac-utils/stac-rs/compare/stac-v0.11.0...main +[0.11.0]: https://github.com/stac-utils/stac-rs/compare/stac-v0.10.2...stac-v0.11.0 [0.10.2]: https://github.com/stac-utils/stac-rs/compare/stac-v0.10.1...stac-v0.10.2 [0.10.1]: https://github.com/stac-utils/stac-rs/compare/stac-v0.10.0...stac-v0.10.1 [0.10.0]: https://github.com/stac-utils/stac-rs/compare/stac-v0.9.0...stac-v0.10.0 diff --git a/crates/core/Cargo.toml b/crates/core/Cargo.toml index b6b9db4d..faa3bc9b 100644 --- a/crates/core/Cargo.toml +++ b/crates/core/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "stac" description = "Rust library for the SpatioTemporal Asset Catalog (STAC) specification" -version = "0.10.2" +version = "0.11.0" keywords = ["geospatial", "stac", "metadata", "geo"] authors.workspace = true categories.workspace = true diff --git a/crates/core/README.md b/crates/core/README.md index d9548a36..c6e36869 100644 --- a/crates/core/README.md +++ b/crates/core/README.md @@ -14,7 +14,7 @@ To use the library in your project: ```toml [dependencies] -stac = "0.10" +stac = "0.11" ``` ## Examples