diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0c940c4..df287b1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest services: pgstac: - image: ghcr.io/stac-utils/pgstac:v0.8.1 + image: ghcr.io/stac-utils/pgstac:v0.8.5 env: POSTGRES_USER: username POSTGRES_PASSWORD: password diff --git a/CHANGELOG.md b/CHANGELOG.md index 480b367..4e2c022 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,16 +6,19 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## [Unreleased] +## [0.0.6] - 2024-04-20 + +- Bump **stac** version to v0.6 +- Bump **pgstac** version to v0.8.5 + ## [0.0.5] - 2023-09-25 -- Bump stac-api version to v0.3.0 +- Bump **stac-api** version to v0.3.0 ## [0.0.4] - 2023-07-07 -### Changed - -- Bump stac-rs version to v0.5 -- Bump pgstac version to v0.6.13 ([#2](https://github.com/stac-utils/pgstac-rs/pull/2)) +- Bump **stac** version to v0.5 +- Bump **pgstac** version to v0.6.13 ([#2](https://github.com/stac-utils/pgstac-rs/pull/2)) ## [0.0.3] - 2023-01-08 @@ -37,7 +40,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), Initial release -[unreleased]: https://github.com/stac-utils/pgstac-rs/compare/v0.0.5...HEAD +[unreleased]: https://github.com/stac-utils/pgstac-rs/compare/v0.0.6...HEAD +[0.0.6]: https://github.com/stac-utils/pgstac-rs/compare/v0.0.5...v0.0.6 [0.0.5]: https://github.com/stac-utils/pgstac-rs/compare/v0.0.4...v0.0.5 [0.0.4]: https://github.com/stac-utils/pgstac-rs/compare/v0.0.3...v0.0.4 [0.0.3]: https://github.com/stac-utils/pgstac-rs/compare/v0.0.2...v0.0.3 diff --git a/Cargo.toml b/Cargo.toml index 718eec3..34a9fe4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pgstac" -version = "0.0.5" +version = "0.0.6" authors = ["Pete Gadomski "] edition = "2021" description = "Rust interface for pgstac" @@ -14,7 +14,7 @@ categories = ["database", "data-structures", "science"] geojson = "0.24" serde = "1" serde_json = "1" -stac = { version = "0.5" } +stac = { version = "0.6" } stac-api = { version = "0.3" } thiserror = "1" tokio-postgres = { version = "0.7", features = ["with-serde_json-1"] } diff --git a/README.md b/README.md index 9cda636..4d10c42 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ In your `Cargo.toml`: ```toml [dependencies] -pgstac = "0.0.4" +pgstac = "0.0.6" ``` See the [documentation](https://docs.rs/pgstac) for more. diff --git a/docker-compose.yml b/docker-compose.yml index a9bfe4b..738fed9 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,7 +2,7 @@ version: '3' services: database: container_name: pgstac-rs - image: ghcr.io/stac-utils/pgstac:v0.8.1 + image: ghcr.io/stac-utils/pgstac:v0.8.5 environment: - POSTGRES_USER=username - POSTGRES_PASSWORD=password