Skip to content

Commit

Permalink
release: stac, stac-api, stac-duckdb (#588)
Browse files Browse the repository at this point in the history
  • Loading branch information
gadomski authored Jan 2, 2025
1 parent b638313 commit a67753e
Show file tree
Hide file tree
Showing 10 changed files with 24 additions and 15 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,10 @@ rustls = { version = "0.23.14", default-features = false }
serde = "1.0"
serde_json = "1.0"
serde_urlencoded = "0.7.1"
stac = { version = "0.11.0", path = "crates/core" }
stac-api = { version = "0.6.2", path = "crates/api" }
stac-derive = { version = "0.1.0", path = "crates/derive" }
stac-duckdb = { version = "0.0.3", path = "crates/duckdb" }
stac = { version = "0.11.1", path = "crates/core" }
stac-api = { version = "0.7.0", path = "crates/api" }
stac-derive = { version = "0.2.0", path = "crates/derive" }
stac-duckdb = { version = "0.1.0", path = "crates/duckdb" }
stac-server = { version = "0.3.2", path = "crates/server" }
syn = "2.0"
tempfile = "3.13"
Expand Down
5 changes: 4 additions & 1 deletion crates/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.7.0] - 2025-01-02

### Added

- Convenience methods on `Search` ([#562](https://github.com/stac-utils/stac-rs/pull/562), [#584](https://github.com/stac-utils/stac-rs/pull/584))
Expand Down Expand Up @@ -145,7 +147,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.6.2...main
[unreleased]: https://github.com/stac-utils/stac-rs/compare/stac-api-v0.7.0...main
[0.7.0]: https://github.com/stac-utils/stac-rs/compare/stac-api-v0.6.2...stac-api-v0.7.0
[0.6.2]: https://github.com/stac-utils/stac-rs/compare/stac-api-v0.6.1...stac-api-v0.6.2
[0.6.1]: https://github.com/stac-utils/stac-rs/compare/stac-api-v0.6.0...stac-api-v0.6.1
[0.6.0]: https://github.com/stac-utils/stac-rs/compare/stac-api-v0.5.0...stac-api-v0.6.0
Expand Down
2 changes: 1 addition & 1 deletion crates/api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "stac-api"
description = "Rust library for the SpatioTemporal Asset Catalog (STAC) API specification"
version = "0.6.2"
version = "0.7.0"
keywords = ["geospatial", "stac", "metadata", "geo", "api"]
categories = ["science", "data-structures", "web-programming"]
authors.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions crates/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.6"
stac-api = "0.7"
```

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

```toml
[dependencies]
stac-api = { version = "0.6", features = ["geo"] }
stac-api = { version = "0.7", features = ["geo"] }
```

## Examples
Expand Down
5 changes: 4 additions & 1 deletion crates/core/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.11.1] - 2025-01-02

### Added

- `Fields` trait impl for `Link` ([#542](https://github.com/stac-utils/stac-rs/pull/542))
Expand Down Expand Up @@ -416,7 +418,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.11.0...main
[Unreleased]: https://github.com/stac-utils/stac-rs/compare/stac-v0.11.1...main
[0.11.1]: https://github.com/stac-utils/stac-rs/compare/stac-v0.11.0...stac-v0.11.1
[0.11.0]: https://github.com/stac-utils/stac-rs/compare/stac-v0.10.2...stac-v0.11.0
[0.10.2]: https://github.com/stac-utils/stac-rs/compare/stac-v0.10.1...stac-v0.10.2
[0.10.1]: https://github.com/stac-utils/stac-rs/compare/stac-v0.10.0...stac-v0.10.1
Expand Down
2 changes: 1 addition & 1 deletion crates/core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "stac"
description = "Rust library for the SpatioTemporal Asset Catalog (STAC) specification"
version = "0.11.0"
version = "0.11.1"
keywords = ["geospatial", "stac", "metadata", "geo"]
authors.workspace = true
categories.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "stac-derive"
description = "Proc macros for deriving STAC traits. Should usually not be used directly."
version = "0.1.0"
version = "0.2.0"
authors.workspace = true
edition.workspace = true
homepage.workspace = true
Expand Down
5 changes: 4 additions & 1 deletion crates/duckdb/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.1.0] - 2025-01-02

### Changed

- Updated to **DuckDB** v1.1 and **geoarrow-rs** v0.4.0-beta.3 ([#562](https://github.com/stac-utils/stac-rs/pull/562))
Expand All @@ -28,7 +30,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

Initial release of **stac-duckdb**.

[Unreleased]: https://github.com/stac-utils/stac-rs/compare/stac-duckdb-v0.0.3...main
[Unreleased]: https://github.com/stac-utils/stac-rs/compare/stac-duckdb-v0.1.0...main
[0.1.0]: https://github.com/stac-utils/stac-rs/compare/stac-duckdb-v0.0.3...stac-duckdb-v0.1.0
[0.0.3]: https://github.com/stac-utils/stac-rs/compare/stac-duckdb-v0.0.2...stac-duckdb-v0.0.3
[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
Expand Down
4 changes: 2 additions & 2 deletions crates/duckdb/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "stac-duckdb"
description = "Experimental client for querying stac-geoparquet using DuckDB"
version = "0.0.3"
description = "Client for querying stac-geoparquet using DuckDB"
version = "0.1.0"
keywords = ["geospatial", "stac", "metadata", "geo", "raster"]
authors.workspace = true
edition.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/duckdb/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[![Crates.io](https://img.shields.io/crates/v/stac-duckdb?style=for-the-badge)](https://crates.io/crates/stac-duckdb)
[![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-2.1-4baaaa.svg?style=for-the-badge)](./CODE_OF_CONDUCT)

Experimental client using [DuckDB](https://duckdb.org/) to search [stac-geoparquet](https://github.com/stac-utils/stac-geoparquet).
Use [DuckDB](https://duckdb.org/) to search [stac-geoparquet](https://github.com/stac-utils/stac-geoparquet).

## Usage

Expand Down

0 comments on commit a67753e

Please sign in to comment.