Skip to content
This repository was archived by the owner on Apr 27, 2024. It is now read-only.

Commit dd2b0d6

Browse files
committed
release: v0.0.6
1 parent 62d15f1 commit dd2b0d6

File tree

5 files changed

+15
-11
lines changed

5 files changed

+15
-11
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
services:
1313
pgstac:
14-
image: ghcr.io/stac-utils/pgstac:v0.8.1
14+
image: ghcr.io/stac-utils/pgstac:v0.8.5
1515
env:
1616
POSTGRES_USER: username
1717
POSTGRES_PASSWORD: password

CHANGELOG.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,19 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66

77
## [Unreleased]
88

9+
## [0.0.6] - 2024-04-20
10+
11+
- Bump **stac** version to v0.6
12+
- Bump **pgstac** version to v0.8.5
13+
914
## [0.0.5] - 2023-09-25
1015

11-
- Bump stac-api version to v0.3.0
16+
- Bump **stac-api** version to v0.3.0
1217

1318
## [0.0.4] - 2023-07-07
1419

15-
### Changed
16-
17-
- Bump stac-rs version to v0.5
18-
- Bump pgstac version to v0.6.13 ([#2](https://github.com/stac-utils/pgstac-rs/pull/2))
20+
- Bump **stac** version to v0.5
21+
- Bump **pgstac** version to v0.6.13 ([#2](https://github.com/stac-utils/pgstac-rs/pull/2))
1922

2023
## [0.0.3] - 2023-01-08
2124

@@ -37,7 +40,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
3740

3841
Initial release
3942

40-
[unreleased]: https://github.com/stac-utils/pgstac-rs/compare/v0.0.5...HEAD
43+
[unreleased]: https://github.com/stac-utils/pgstac-rs/compare/v0.0.6...HEAD
44+
[0.0.6]: https://github.com/stac-utils/pgstac-rs/compare/v0.0.5...v0.0.6
4145
[0.0.5]: https://github.com/stac-utils/pgstac-rs/compare/v0.0.4...v0.0.5
4246
[0.0.4]: https://github.com/stac-utils/pgstac-rs/compare/v0.0.3...v0.0.4
4347
[0.0.3]: https://github.com/stac-utils/pgstac-rs/compare/v0.0.2...v0.0.3

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pgstac"
3-
version = "0.0.5"
3+
version = "0.0.6"
44
authors = ["Pete Gadomski <[email protected]>"]
55
edition = "2021"
66
description = "Rust interface for pgstac"
@@ -14,7 +14,7 @@ categories = ["database", "data-structures", "science"]
1414
geojson = "0.24"
1515
serde = "1"
1616
serde_json = "1"
17-
stac = { version = "0.5" }
17+
stac = { version = "0.6" }
1818
stac-api = { version = "0.3" }
1919
thiserror = "1"
2020
tokio-postgres = { version = "0.7", features = ["with-serde_json-1"] }

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ In your `Cargo.toml`:
1313

1414
```toml
1515
[dependencies]
16-
pgstac = "0.0.4"
16+
pgstac = "0.0.6"
1717
```
1818

1919
See the [documentation](https://docs.rs/pgstac) for more.

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: '3'
22
services:
33
database:
44
container_name: pgstac-rs
5-
image: ghcr.io/stac-utils/pgstac:v0.8.1
5+
image: ghcr.io/stac-utils/pgstac:v0.8.5
66
environment:
77
- POSTGRES_USER=username
88
- POSTGRES_PASSWORD=password

0 commit comments

Comments
 (0)