Skip to content

Commit

Permalink
release: stac v0.5.3, stac-api v0.3.3, stac-async v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gadomski committed Apr 7, 2024
1 parent 4bf5f20 commit c5507e5
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 7 deletions.
5 changes: 4 additions & 1 deletion stac-api/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [Unreleased]

## [0.3.3] - 2024-04-07

### Added

- `Search::validate` ([#206](https://github.com/stac-utils/stac-rs/pull/206))
Expand Down Expand Up @@ -76,7 +78,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-api-v0.3.2...main
[unreleased]: https://github.com/stac-utils/stac-rs/compare/stac-api-v0.3.3...main
[0.3.3]: https://github.com/stac-utils/stac-rs/compare/stac-api-v0.3.2...stac-api-v0.3.3
[0.3.2]: https://github.com/stac-utils/stac-rs/compare/stac-api-v0.3.1...stac-api-v0.3.2
[0.3.1]: https://github.com/stac-utils/stac-rs/compare/stac-api-v0.3.0...stac-api-v0.3.1
[0.3.0]: https://github.com/stac-utils/stac-rs/compare/stac-api-v0.2.0...stac-api-v0.3.0
Expand Down
2 changes: 1 addition & 1 deletion stac-api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "stac-api"
version = "0.3.2"
version = "0.3.3"
authors = ["Pete Gadomski <[email protected]>"]
edition = "2021"
description = "Rust library for the SpatioTemporal Asset Catalog (STAC) API specification"
Expand Down
5 changes: 4 additions & 1 deletion stac-async/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [Unreleased]

## [0.5.0]

### Added

- `ApiClient::with_client` ([#227](https://github.com/stac-utils/stac-rs/pull/227))
Expand Down Expand Up @@ -48,7 +50,8 @@ No changes.

Initial release of **stac-async**.

[Unreleased]: https://github.com/stac-utils/stac-rs/compare/stac-async-v0.4.1...main
[Unreleased]: https://github.com/stac-utils/stac-rs/compare/stac-async-v0.5.0...main
[0.5.0]: https://github.com/stac-utils/stac-rs/compare/stac-async-v0.4.1...stac-async-v0.5.0
[0.4.1]: https://github.com/stac-utils/stac-rs/compare/stac-async-v0.4.0...stac-async-v0.4.1
[0.4.0]: https://github.com/stac-utils/stac-rs/compare/stac-async-v0.3.0...stac-async-v0.4.0
[0.3.0]: https://github.com/stac-utils/stac-rs/compare/stac-async-v0.2.0...stac-async-v0.3.0
Expand Down
2 changes: 1 addition & 1 deletion stac-async/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "stac-async"
version = "0.4.1"
version = "0.5.0"
edition = "2021"
description = "Asynchronous I/O for stac-rs"
documentation = "https://docs.rs/stac-async"
Expand Down
2 changes: 1 addition & 1 deletion stac-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ serde = "1"
serde_json = "1"
stac = { version = "0.5", path = "../stac" }
stac-api = { version = "0.3", path = "../stac-api" }
stac-async = { version = "0.4", path = "../stac-async" }
stac-async = { version = "0.5", path = "../stac-async" }
stac-validate = { version = "0.1", path = "../stac-validate" }
thiserror = "1"
tokio = { version = "1.23", features = ["macros", "rt-multi-thread"] }
Expand Down
5 changes: 4 additions & 1 deletion stac/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [Unreleased]

## [0.5.3] - 2024-04-07

### Added

- `Geometry::point` ([#206](https://github.com/stac-utils/stac-rs/pull/206))
Expand Down Expand Up @@ -255,7 +257,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.5.2...main
[Unreleased]: https://github.com/stac-utils/stac-rs/compare/stac-v0.5.3...main
[0.5.3]: https://github.com/stac-utils/stac-rs/compare/stac-v0.5.2...stac-v0.5.3
[0.5.2]: https://github.com/stac-utils/stac-rs/compare/stac-v0.5.1...stac-v0.5.2
[0.5.1]: https://github.com/stac-utils/stac-rs/compare/stac-v0.5.0...stac-v0.5.1
[0.5.0]: https://github.com/stac-utils/stac-rs/compare/stac-v0.4.0...stac-v0.5.0
Expand Down
2 changes: 1 addition & 1 deletion stac/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "stac"
version = "0.5.2"
version = "0.5.3"
authors = ["Pete Gadomski <[email protected]>"]
edition = "2021"
description = "Rust library for the SpatioTemporal Asset Catalog (STAC) specification"
Expand Down

0 comments on commit c5507e5

Please sign in to comment.