From b4f1ad8632a34d014287076edcaad0ab199921b9 Mon Sep 17 00:00:00 2001 From: Pete Gadomski Date: Mon, 25 Sep 2023 15:44:14 -0400 Subject: [PATCH] release: stac-api v0.3.0 --- stac-api/CHANGELOG.md | 5 ++++- stac-api/Cargo.toml | 2 +- stac-api/README.md | 4 ++-- stac-async/Cargo.toml | 2 +- 4 files changed, 8 insertions(+), 5 deletions(-) diff --git a/stac-api/CHANGELOG.md b/stac-api/CHANGELOG.md index 30ce4440..ef322b23 100644 --- a/stac-api/CHANGELOG.md +++ b/stac-api/CHANGELOG.md @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## [Unreleased] +## [0.3.0] - 2023-09-25 + ### Added - Conformance URIs ([#170](https://github.com/stac-utils/stac-rs/pull/170)) @@ -57,6 +59,7 @@ 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-api-v0.2.0...main +[unreleased]: https://github.com/stac-utils/stac-rs/compare/stac-api-v0.3.0...main +[0.3.0]: https://github.com/stac-utils/stac-rs/compare/stac-api-v0.2.0...stac-api-v0.3.0 [0.2.0]: https://github.com/stac-utils/stac-rs/compare/stac-api-v0.1.0...stac-api-v0.2.0 [0.1.0]: https://github.com/stac-utils/stac-rs/releases/tag/stac-api-v0.1.0 diff --git a/stac-api/Cargo.toml b/stac-api/Cargo.toml index 959915e4..a5cf253d 100644 --- a/stac-api/Cargo.toml +++ b/stac-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stac-api" -version = "0.2.1" +version = "0.3.0" authors = ["Pete Gadomski "] edition = "2021" description = "Rust library for the SpatioTemporal Asset Catalog (STAC) API specification" diff --git a/stac-api/README.md b/stac-api/README.md index 1b692d22..e27ba884 100644 --- a/stac-api/README.md +++ b/stac-api/README.md @@ -16,7 +16,7 @@ To use the library in your project: ```toml [dependencies] -stac-api = "0.2" +stac-api = "0.3" ``` **stac-api** has one optional feature, `schemars`, which can be used to generate [jsonschema](https://json-schema.org/) documents for the API structures. @@ -24,7 +24,7 @@ This is useful for auto-generating OpenAPI documentation: ```toml [dependencies] -stac-api = { version = "0.2", features = ["schemars"] } +stac-api = { version = "0.3", features = ["schemars"] } ``` ## Examples diff --git a/stac-async/Cargo.toml b/stac-async/Cargo.toml index 46173292..c67e6e6a 100644 --- a/stac-async/Cargo.toml +++ b/stac-async/Cargo.toml @@ -20,7 +20,7 @@ reqwest = { version = "0.11", features = ["json"] } serde = "1" serde_json = "1" stac = { version = "0.5", path = "../stac" } -stac-api = { version = "0.2", path = "../stac-api" } +stac-api = { version = "0.3", path = "../stac-api" } thiserror = "1" tokio = { version = "1.23", features = ["fs", "io-util"] } url = "2"