Skip to content

Commit 8ab5093

Browse files
committed
release: stac, stac-api, stac-cli, stac-validate
1 parent aec2310 commit 8ab5093

File tree

15 files changed

+42
-26
lines changed

15 files changed

+42
-26
lines changed

RELEASING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Checklist
44

55
1. Determine which package(s) you're releasing.
6-
2. Determine the package's next version.
6+
2. Determine the package's next version. [cargo-semver-checks](https://github.com/obi1kenobi/cargo-semver-checks) is a handy tool for this.
77
3. Create a release branch named `release/{package name}-{version}`, e.g. `release/stac-v1.2.3`.
88
4. Update the package's `Cargo.toml` file accordingly, and update the other packages' `Cargo.toml` if they depend on this package.
99
5. Scan the package's README for references to version numbers, and update any that are needed.

api/CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,17 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66

77
## [Unreleased]
88

9+
## [0.6.0] - 2024-09-19
10+
911
### Added
1012

1113
- `Client` (from now-defunkt **stac-async**) ([#372](https://github.com/stac-utils/stac-rs/pull/372))
1214
- `BlockingClient` ([#387](https://github.com/stac-utils/stac-rs/pull/387))
1315

16+
### Changed
17+
18+
- `Collections` and `Items` now have private attributes ([#407](https://github.com/stac-utils/stac-rs/pull/407))
19+
1420
## [0.5.0] - 2024-09-05
1521

1622
### Added
@@ -117,7 +123,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
117123

118124
Initial release
119125

120-
[unreleased]: https://github.com/stac-utils/stac-rs/compare/stac-api-v0.5.0...main
126+
[unreleased]: https://github.com/stac-utils/stac-rs/compare/stac-api-v0.6.0...main
127+
[0.6.0]: https://github.com/stac-utils/stac-rs/compare/stac-api-v0.5.0...stac-api-v0.6.0
121128
[0.5.0]: https://github.com/stac-utils/stac-rs/compare/stac-api-v0.4.1...stac-api-v0.5.0
122129
[0.4.1]: https://github.com/stac-utils/stac-rs/compare/stac-api-v0.4.0...stac-api-v0.4.1
123130
[0.4.0]: https://github.com/stac-utils/stac-rs/compare/stac-api-v0.3.3...stac-api-v0.4.0

api/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "stac-api"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
authors = ["Pete Gadomski <[email protected]>"]
55
edition = "2021"
66
description = "Rust library for the SpatioTemporal Asset Catalog (STAC) API specification"
@@ -31,7 +31,7 @@ geojson = "0.24"
3131
serde = "1"
3232
serde_json = "1"
3333
serde_urlencoded = "0.7"
34-
stac = { version = "0.9.0", path = "../core" }
34+
stac = { version = "0.10.0", path = "../core" }
3535
thiserror = "1"
3636
tokio = { version = "1.23", optional = true }
3737
url = "2.3"

api/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ To use the library in your project:
1616

1717
```toml
1818
[dependencies]
19-
stac-api = "0.5"
19+
stac-api = "0.6"
2020
```
2121

2222
**stac-api** has one optional feature.
2323
`geo` enables `Search::match`:
2424

2525
```toml
2626
[dependencies]
27-
stac-api = { version = "0.5", features = ["geo"] }
27+
stac-api = { version = "0.6", features = ["geo"] }
2828
```
2929

3030
## Examples

cli/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
77

88
## [Unreleased]
99

10+
## [0.4.0] - 2024-09-19
11+
1012
### Added
1113

1214
- Outfile and stream arguments to `items` ([#363](https://github.com/stac-utils/stac-rs/pull/363))
@@ -97,7 +99,8 @@ Moved over from [stac-incubator-rs](https://github.com/gadomski/stac-incubator-r
9799
- Downloading ([#142](https://github.com/stac-utils/stac-rs/pull/142), [#152](https://github.com/stac-utils/stac-rs/pull/152))
98100
- Validation ([#155](https://github.com/stac-utils/stac-rs/pull/155))
99101

100-
[Unreleased]: https://github.com/stac-utils/stac-rs/compare/stac-cli-v0.3.1..main
102+
[Unreleased]: https://github.com/stac-utils/stac-rs/compare/stac-cli-v0.4.0..main
103+
[0.4.0]: https://github.com/stac-utils/stac-rs/compare/stac-cli-v0.3.1..stac-cli-v0.4.0
101104
[0.3.1]: https://github.com/stac-utils/stac-rs/compare/stac-cli-v0.3.0..stac-cli-v0.3.1
102105
[0.3.0]: https://github.com/stac-utils/stac-rs/compare/stac-cli-v0.2.0..stac-cli-v0.3.0
103106
[0.2.0]: https://github.com/stac-utils/stac-rs/compare/stac-cli-v0.1.0..stac-cli-v0.2.0

cli/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "stac-cli"
3-
version = "0.3.1"
3+
version = "0.4.0"
44
edition = "2021"
55
description = "Command line interface for stac-rs"
66
documentation = "https://docs.rs/stac-cli"
@@ -28,15 +28,15 @@ pyo3 = { version = "0.22", optional = true }
2828
reqwest = "0.12"
2929
serde = "1"
3030
serde_json = "1"
31-
stac = { version = "0.9.0", path = "../core", features = [
31+
stac = { version = "0.10.0", path = "../core", features = [
3232
"geoparquet-compression",
3333
"object-store-all",
3434
"reqwest",
3535
] }
36-
stac-api = { version = "0.5.0", path = "../api", features = ["client"] }
36+
stac-api = { version = "0.6.0", path = "../api", features = ["client"] }
3737
stac-duckdb = { version = "0.0.1", path = "../duckdb", optional = true }
3838
stac-server = { version = "0.3.0", path = "../server", features = ["axum"] }
39-
stac-validate = { version = "0.2.2", path = "../validate" }
39+
stac-validate = { version = "0.3.0", path = "../validate" }
4040
thiserror = "1"
4141
tokio = { version = "1.23", features = [
4242
"macros",

core/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66

77
## [Unreleased]
88

9+
## [0.10.0] - 2024-09-19
10+
911
### Added
1012

1113
- Deref `ItemCollection` ([#363](https://github.com/stac-utils/stac-rs/pull/363))
@@ -372,7 +374,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
372374

373375
Initial release.
374376

375-
[Unreleased]: https://github.com/stac-utils/stac-rs/compare/stac-v0.9.0...main
377+
[Unreleased]: https://github.com/stac-utils/stac-rs/compare/stac-v0.10.0...main
378+
[0.10.0]: https://github.com/stac-utils/stac-rs/compare/stac-v0.9.0...stac-v0.10.0
376379
[0.9.0]: https://github.com/stac-utils/stac-rs/compare/stac-v0.8.0...stac-v0.9.0
377380
[0.8.0]: https://github.com/stac-utils/stac-rs/compare/stac-v0.7.2...stac-v0.8.0
378381
[0.7.2]: https://github.com/stac-utils/stac-rs/compare/stac-v0.7.1...stac-v0.7.2

core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "stac"
3-
version = "0.9.0"
3+
version = "0.10.0"
44
authors = ["Pete Gadomski <[email protected]>"]
55
edition = "2021"
66
description = "Rust library for the SpatioTemporal Asset Catalog (STAC) specification"

core/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ To use the library in your project:
1414

1515
```toml
1616
[dependencies]
17-
stac = "0.9"
17+
stac = "0.10"
1818
```
1919

2020
## Examples

duckdb/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ arrow = "52"
1515
duckdb = "1.0"
1616
geoarrow = { version = "0.3" }
1717
parquet = "52"
18-
stac = { version = "0.9.0", path = "../core", features = ["geoarrow"] }
19-
stac-api = { version = "0.5.0", path = "../api" }
18+
stac = { version = "0.10.0", path = "../core", features = ["geoarrow"] }
19+
stac-api = { version = "0.6.0", path = "../api" }
2020
thiserror = "1"
2121

2222
[dev-dependencies]

0 commit comments

Comments
 (0)