Skip to content

Commit

Permalink
release: stac-api v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gadomski committed Sep 25, 2023
1 parent 3f04c81 commit fe02653
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 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.0] - 2023-09-25

### Added

- Conformance URIs ([#170](https://github.com/stac-utils/stac-rs/pull/170))
Expand Down Expand Up @@ -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
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.2.1"
version = "0.3.0"
authors = ["Pete Gadomski <[email protected]>"]
edition = "2021"
description = "Rust library for the SpatioTemporal Asset Catalog (STAC) API specification"
Expand Down
4 changes: 2 additions & 2 deletions stac-api/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ 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.
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
Expand Down
2 changes: 1 addition & 1 deletion stac-async/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit fe02653

Please sign in to comment.