Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions crates/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.2.3](https://github.com/stac-utils/rustac/compare/rustac-v0.2.2...rustac-v0.2.3) - 2026-01-14

### Added

- search directly from pgstac ([#933](https://github.com/stac-utils/rustac/pull/933))

## [0.2.2](https://github.com/stac-utils/rustac/compare/rustac-v0.2.1...rustac-v0.2.2) - 2026-01-05

### Added
Expand Down
6 changes: 3 additions & 3 deletions crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "rustac"
description = "Command line interface for rustac"
version = "0.2.2"
version = "0.2.3"
keywords = ["geospatial", "stac", "metadata", "geo", "raster"]
authors.workspace = true
edition.workspace = true
Expand All @@ -24,15 +24,15 @@ clap = { workspace = true, features = ["derive"] }
clap_complete.workspace = true
futures-core.workspace = true
futures-util.workspace = true
pgstac = { version = "0.4.2", path = "../pgstac", optional = true }
pgstac = { version = "0.4.3", path = "../pgstac", optional = true }
serde_json.workspace = true
stac = { version = "0.16.0", path = "../core" }
stac-duckdb = { version = "0.3.2", path = "../duckdb" }
stac-io = { version = "0.2.2", path = "../io", features = [
"store-all",
"geoparquet",
] }
stac-server = { version = "0.4.2", path = "../server", features = ["axum", "duckdb"] }
stac-server = { version = "0.4.3", path = "../server", features = ["axum", "duckdb"] }
stac-validate = { version = "0.6.2", path = "../validate" }
tokio = { workspace = true, features = [
"macros",
Expand Down
6 changes: 6 additions & 0 deletions crates/pgstac/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.4.3](https://github.com/stac-utils/rustac/compare/pgstac-v0.4.2...pgstac-v0.4.3) - 2026-01-14

### Added

- search directly from pgstac ([#933](https://github.com/stac-utils/rustac/pull/933))

## [0.4.2](https://github.com/stac-utils/rustac/compare/pgstac-v0.4.1...pgstac-v0.4.2) - 2026-01-05

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/pgstac/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "pgstac"
description = "Rust interface for pgstac"
version = "0.4.2"
version = "0.4.3"
keywords = ["geospatial", "stac", "metadata", "raster", "database"]
categories = ["database", "data-structures", "science"]
authors.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions crates/server/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.4.3](https://github.com/stac-utils/rustac/compare/stac-server-v0.4.2...stac-server-v0.4.3) - 2026-01-14

### Other

- updated the following local packages: pgstac

## [0.4.2](https://github.com/stac-utils/rustac/compare/stac-server-v0.4.1...stac-server-v0.4.2) - 2026-01-05

### Other
Expand Down
4 changes: 2 additions & 2 deletions crates/server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "stac-server"
description = "SpatioTemporal Asset Catalog (STAC) API server"
version = "0.4.2"
version = "0.4.3"
keywords = ["geospatial", "stac", "metadata", "geo", "server"]
categories = ["science", "data-structures"]
edition.workspace = true
Expand Down Expand Up @@ -30,7 +30,7 @@ bb8-postgres = { workspace = true, optional = true }
bytes = { workspace = true, optional = true }
http.workspace = true
mime = { workspace = true, optional = true }
pgstac = { version = "0.4.2", path = "../pgstac", optional = true }
pgstac = { version = "0.4.3", path = "../pgstac", optional = true }
rustls = { workspace = true, optional = true }
serde.workspace = true
serde_json.workspace = true
Expand Down