diff --git a/Cargo.toml b/Cargo.toml index 0b3fefff..9c974997 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -77,7 +77,7 @@ stac = { version = "0.10.2", path = "crates/core" } stac-api = { version = "0.6.1", path = "crates/api" } stac-derive = { version = "0.1.0", path = "crates/derive" } stac-duckdb = { version = "0.0.2", path = "crates/duckdb" } -stac-server = { version = "0.3.1", path = "crates/server" } +stac-server = { version = "0.3.2", path = "crates/server" } stac-types = { version = "0.1.0", path = "crates/types" } syn = "2.0" tempfile = "3.13" diff --git a/crates/server/CHANGELOG.md b/crates/server/CHANGELOG.md index af0bdd8e..e730965c 100644 --- a/crates/server/CHANGELOG.md +++ b/crates/server/CHANGELOG.md @@ -6,11 +6,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## [Unreleased] +## [0.3.2] - 2024-11-12 + ### Added - Filter extension for **pgstac** backend ([#519](https://github.com/stac-utils/stac-rs/pull/519)) -## [0.3.1] - 2024.09-19 +## [0.3.1] - 2024-09-19 ### Changed @@ -55,7 +57,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.1..main +[Unreleased]: https://github.com/stac-utils/stac-rs/compare/stac-server-v0.3.2..main +[0.3.2]: https://github.com/stac-utils/stac-rs/compare/stac-server-v0.3.1..stac-server-v0.3.2 [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 diff --git a/crates/server/Cargo.toml b/crates/server/Cargo.toml index 3c9628db..edc76591 100644 --- a/crates/server/Cargo.toml +++ b/crates/server/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "stac-server" description = "SpatioTemporal Asset Catalog (STAC) API server" -version = "0.3.1" +version = "0.3.2" keywords = ["geospatial", "stac", "metadata", "geo", "server"] categories = ["science", "data-structures"] edition.workspace = true