Skip to content

Commit

Permalink
release: patch releases of the rest
Browse files Browse the repository at this point in the history
  • Loading branch information
gadomski committed Sep 19, 2024
1 parent 8ab5093 commit 6b42cfa
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 8 deletions.
6 changes: 3 additions & 3 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ axum = "0.7"
clap = { version = "4", features = ["derive"] }
duckdb = { version = "1", optional = true } # We have this dependency only to allow us to bundle it
object_store = "0.11"
pgstac = { version = "0.2.0", path = "../pgstac", optional = true }
pgstac = { version = "0.2.1", path = "../pgstac", optional = true }
pyo3 = { version = "0.22", optional = true }
reqwest = "0.12"
serde = "1"
Expand All @@ -34,8 +34,8 @@ stac = { version = "0.10.0", path = "../core", features = [
"reqwest",
] }
stac-api = { version = "0.6.0", path = "../api", features = ["client"] }
stac-duckdb = { version = "0.0.1", path = "../duckdb", optional = true }
stac-server = { version = "0.3.0", path = "../server", features = ["axum"] }
stac-duckdb = { version = "0.0.2", path = "../duckdb", optional = true }
stac-server = { version = "0.3.1", path = "../server", features = ["axum"] }
stac-validate = { version = "0.3.0", path = "../validate" }
thiserror = "1"
tokio = { version = "1.23", features = [
Expand Down
6 changes: 5 additions & 1 deletion duckdb/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,19 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [Unreleased]

## [0.0.2] - 2024-09-19

### Changed

- Update **geoarrow** to v0.3.0 ([#367](https://github.com/stac-utils/stac-rs/pull/367))
- Bump **stac** to v0.6.0, **stac-api** to v0.6.0

## [0.0.1] - 2024-09-05

Initial release of **stac-duckdb**.

[Unreleased]: https://github.com/stac-utils/stac-rs/compare/stac-duckdb-v0.0.1...main
[Unreleased]: https://github.com/stac-utils/stac-rs/compare/stac-duckdb-v0.0.2...main
[0.0.2]: https://github.com/stac-utils/stac-rs/compare/stac-duckdb-v0.0.1...stac-duckdb-v0.0.2
[0.0.1]: https://github.com/stac-utils/stac-rs/releases/tag/stac-duckdb-v0.0.1

<!-- markdownlint-disable-file MD024 -->
2 changes: 1 addition & 1 deletion duckdb/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "stac-duckdb"
version = "0.0.1"
version = "0.0.2"
authors = ["Pete Gadomski <[email protected]>"]
edition = "2021"
description = "Experimental client for querying stac-geoparquet using DuckDB"
Expand Down
6 changes: 6 additions & 0 deletions pgstac/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [Unreleased]

## [0.2.1] - 2024-09-19

### Changed

- Bump **stac** to v0.10.0, **stac-api** to v0.6.0

## [0.2.0] - 2024-09-16

### Added
Expand Down
2 changes: 1 addition & 1 deletion pgstac/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pgstac"
version = "0.2.0"
version = "0.2.1"
authors = ["Pete Gadomski <[email protected]>"]
edition = "2021"
description = "Rust interface for pgstac"
Expand Down
9 changes: 8 additions & 1 deletion server/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [Unreleased]

## [0.3.1] - 2024.09-19

### Changed

- Bump **stac** to v0.10.0, **stac-api** to v0.6.0

## [0.3.0] - 2024-09-16

### Added
Expand Down Expand Up @@ -45,7 +51,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-server-v0.3.0..main
[Unreleased]: https://github.com/stac-utils/stac-rs/compare/stac-server-v0.3.1..main
[0.3.1]: https://github.com/stac-utils/stac-rs/compare/stac-server-v0.3.0..stac-server-v0.3.1
[0.3.0]: https://github.com/stac-utils/stac-rs/compare/stac-server-v0.2.0..stac-server-v0.3.0
[0.2.0]: https://github.com/stac-utils/stac-rs/compare/stac-server-v0.1.1..stac-server-v0.2.0
[0.1.1]: https://github.com/stac-utils/stac-rs/compare/stac-server-v0.1.0..stac-server-v0.1.1
Expand Down
2 changes: 1 addition & 1 deletion server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "stac-server"
version = "0.3.0"
version = "0.3.1"
edition = "2021"
authors = ["Pete Gadomski <[email protected]>"]
description = "SpatioTemporal Asset Catalog (STAC) API server"
Expand Down

0 comments on commit 6b42cfa

Please sign in to comment.