Skip to content

Commit

Permalink
release: stac v0.12.0, stac-extensions v0.1.0 (#616)
Browse files Browse the repository at this point in the history
  • Loading branch information
gadomski authored Jan 31, 2025
1 parent 03739a3 commit 7e848be
Show file tree
Hide file tree
Showing 8 changed files with 49 additions and 14 deletions.
19 changes: 10 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,41 +47,42 @@ chrono = "0.4.38"
clap = "4.5"
cql2 = "0.3.0"
duckdb = "1.1.1"
fluent-uri = "0.3.1"
fluent-uri = "0.3.2"
futures = "0.3.31"
geo = "0.29.3"
geo-types = "0.7.13"
geo-types = "0.7.15"
geoarrow = "0.4.0-beta.3"
geojson = "0.24.1"
http = "1.1"
jsonschema = { version = "0.28.3", default-features = false }
libduckdb-sys = "1.1.1"
log = "0.4.22"
log = "0.4.25"
mime = "0.3.17"
mockito = "1.5"
object_store = "0.11.0"
parquet = { version = "53.1.0", default-features = false }
pgstac = { version = "0.3.0", path = "crates/pgstac" }
pyo3 = "0.23.3"
pyo3 = "0.23.4"
pythonize = "0.23.0"
quote = "1.0"
reqwest = { version = "0.12.8", default-features = false, features = [
"rustls-tls",
] }
rstest = "0.24.0"
rustls = { version = "0.23.14", default-features = false }
rustls = { version = "0.23.22", default-features = false }
serde = "1.0"
serde_json = "1.0"
serde_urlencoded = "0.7.1"
stac = { version = "0.11.1", path = "crates/core" }
stac = { version = "0.12.0", 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-extensions = { version = "0.1.0", path = "crates/extensions" }
stac-server = { version = "0.3.2", path = "crates/server" }
syn = "2.0"
tempfile = "3.13"
tempfile = "3.16"
thiserror = "2.0"
tokio = "1.37"
tokio = "1.43"
tokio-postgres = "0.7.12"
tokio-postgres-rustls = "0.13.0"
tokio-stream = "0.1.16"
Expand All @@ -94,4 +95,4 @@ tracing-subscriber = { version = "0.3.18", features = [
"tracing-log",
] }
url = "2.3"
webpki-roots = "0.26.6"
webpki-roots = "0.26.8"
5 changes: 4 additions & 1 deletion crates/cli/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.5.0] - 2025-01-31

### Changed

- Pretty big code refactor and a lot of options ([#607](https://github.com/stac-utils/stac-rs/pull/607))
Expand Down Expand Up @@ -108,7 +110,8 @@ Moved over from [stac-incubator-rs](https://github.com/gadomski/stac-incubator-r
- Downloading ([#142](https://github.com/stac-utils/stac-rs/pull/142), [#152](https://github.com/stac-utils/stac-rs/pull/152))
- Validation ([#155](https://github.com/stac-utils/stac-rs/pull/155))

[Unreleased]: https://github.com/stac-utils/stac-rs/compare/stac-cli-v0.4.1..main
[Unreleased]: https://github.com/stac-utils/stac-rs/compare/stac-cli-v0.5.0..main
[0.5.0]: https://github.com/stac-utils/stac-rs/compare/stac-cli-v0.4.1..stac-cli-v0.5.0
[0.4.1]: https://github.com/stac-utils/stac-rs/compare/stac-cli-v0.4.0..stac-cli-v0.4.1
[0.4.0]: https://github.com/stac-utils/stac-rs/compare/stac-cli-v0.3.1..stac-cli-v0.4.0
[0.3.1]: https://github.com/stac-utils/stac-rs/compare/stac-cli-v0.3.0..stac-cli-v0.3.1
Expand Down
2 changes: 1 addition & 1 deletion crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "stac-cli"
description = "Command line interface for stac-rs"
version = "0.4.1"
version = "0.5.0"
keywords = ["geospatial", "stac", "metadata", "geo", "raster"]
authors.workspace = true
edition.workspace = true
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.12.0] - 2025-01-31

### Added

- `error::Validation::into_json` ([#613](https://github.com/stac-utils/stac-rs/pull/613))
Expand Down Expand Up @@ -427,7 +429,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.1...main
[Unreleased]: https://github.com/stac-utils/stac-rs/compare/stac-v0.12.0...main
[0.12.0]: https://github.com/stac-utils/stac-rs/compare/stac-v0.11.1...stac-v0.12.0
[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
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.1"
version = "0.12.0"
keywords = ["geospatial", "stac", "metadata", "geo"]
authors.workspace = true
categories.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ To use the library in your project:

```toml
[dependencies]
stac = "0.11"
stac = "0.12"
```

## Examples
Expand Down
16 changes: 16 additions & 0 deletions crates/extensions/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Changelog

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).

## [Unreleased]

## [0.1.0] - 2025-01-31

Initial release.

[Unreleased]: https://github.com/stac-utils/stac-rs/compare/stac-extensions-v0.1.0...main
[0.1.0]: https://github.com/stac-utils/stac-rs/releases/tag/v0.1.0

<!-- markdownlint-disable-file MD024 -->
12 changes: 12 additions & 0 deletions crates/extensions/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# stac-extensions

[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/stac-utils/stac-rs/ci.yml?branch=main&style=for-the-badge)](https://github.com/stac-utils/stac-rs/actions/workflows/ci.yml)
[![docs.rs](https://img.shields.io/docsrs/stac-extensions?style=for-the-badge)](https://docs.rs/stac-extensions/latest/stac_extensions/)
[![Crates.io](https://img.shields.io/crates/v/stac-extensions?style=for-the-badge)](https://crates.io/crates/stac-extensions)
![Crates.io](https://img.shields.io/crates/l/stac-extensions?style=for-the-badge)

Rudimentary support for [STAC extensions](https://stac-extensions.github.io/).

## Other info

This crate is part of the [stac-rs](https://github.com/stac-utils/stac-rs) monorepo, see its README for contributing and license information.

0 comments on commit 7e848be

Please sign in to comment.