Skip to content

Commit da6b45b

Browse files
committed
release: server v0.3.0, pgstac v0.2.0
1 parent 96f5564 commit da6b45b

File tree

8 files changed

+26
-10
lines changed

8 files changed

+26
-10
lines changed

cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ axum = "0.7"
2424
clap = { version = "4", features = ["derive"] }
2525
duckdb = { version = "1", optional = true } # We have this dependency only to allow us to bundle it
2626
object_store = "0.11"
27-
pgstac = { version = "0.1", path = "../pgstac", optional = true }
27+
pgstac = { version = "0.2.0", path = "../pgstac", optional = true }
2828
pyo3 = { version = "0.22", optional = true }
2929
reqwest = "0.12"
3030
serde = "1"
@@ -35,7 +35,7 @@ stac = { version = "0.9.0", path = "../core", features = [
3535
] }
3636
stac-api = { version = "0.5.0", path = "../api", features = ["client"] }
3737
stac-duckdb = { version = "0.0.1", path = "../duckdb", optional = true }
38-
stac-server = { version = "0.2.0", path = "../server", features = ["axum"] }
38+
stac-server = { version = "0.3.0", path = "../server", features = ["axum"] }
3939
stac-validate = { version = "0.2.2", path = "../validate" }
4040
thiserror = "1"
4141
tokio = { version = "1.23", features = [

pgstac/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [0.2.0] - 2024-09-16
10+
11+
### Added
12+
13+
- Unverified tls provider ([#383](https://github.com/stac-utils/stac-rs/pull/383))
14+
915
## [0.1.2] - 2024-09-05
1016

1117
### Changed
@@ -59,7 +65,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5965

6066
Initial release
6167

62-
[unreleased]: https://github.com/stac-utils/stac-rs/compare/pgstac-v0.1.2...HEAD
68+
[unreleased]: https://github.com/stac-utils/stac-rs/compare/pgstac-v0.2.0...HEAD
69+
[0.2.0]: https://github.com/stac-utils/stac-rs/compare/pgstac-v0.1.2..pgstac-v0.2.0
6370
[0.1.2]: https://github.com/stac-utils/stac-rs/compare/pgstac-v0.1.1..pgstac-v0.1.2
6471
[0.1.1]: https://github.com/stac-utils/stac-rs/compare/pgstac-v0.1.0..pgstac-v0.1.1
6572
[0.1.0]: https://github.com/stac-utils/stac-rs/releases/tag/pgstac-v0.1.0

pgstac/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pgstac"
3-
version = "0.1.2"
3+
version = "0.2.0"
44
authors = ["Pete Gadomski <[email protected]>"]
55
edition = "2021"
66
description = "Rust interface for pgstac"

pgstac/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.1"
16+
pgstac = "0.2"
1717
```
1818

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

pgstac/src/lib.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@
3131
//! transaction.commit().await.unwrap();
3232
//! # })
3333
//! ```
34+
//!
35+
//! # Features
36+
//!
37+
//! - `tls`: provide a function to create an unverified tls provider, which can be useful in some circumstances (see <https://github.com/stac-utils/stac-rs/issues/375>)
3438
3539
#![deny(missing_docs)]
3640

server/CHANGELOG.md

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

77
## [Unreleased]
88

9-
- Make TLS the default for `PgstacBackend` ([#383](https://github.com/stac-utils/stac-rs/pull/383))
9+
## [0.3.0] - 2024-09-16
10+
11+
### Added
12+
13+
- Parameterize `PgstacBackend` on tls provider ([#383](https://github.com/stac-utils/stac-rs/pull/383))
1014

1115
### Removed
1216

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

4246
Initial release.
4347

44-
[Unreleased]: https://github.com/stac-utils/stac-rs/compare/stac-server-v0.2.0..main
48+
[Unreleased]: https://github.com/stac-utils/stac-rs/compare/stac-server-v0.3.0..main
49+
[0.3.0]: https://github.com/stac-utils/stac-rs/compare/stac-server-v0.2.0..stac-server-v0.3.0
4550
[0.2.0]: https://github.com/stac-utils/stac-rs/compare/stac-server-v0.1.1..stac-server-v0.2.0
4651
[0.1.1]: https://github.com/stac-utils/stac-rs/compare/stac-server-v0.1.0..stac-server-v0.1.1
4752
[0.1.0]: https://github.com/stac-utils/stac-rs/releases/tag/stac-server-v0.1.0

server/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "stac-server"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
edition = "2021"
55
authors = ["Pete Gadomski <[email protected]>"]
66
description = "SpatioTemporal Asset Catalog (STAC) API server"
@@ -22,7 +22,7 @@ bb8-postgres = { version = "0.8", optional = true }
2222
bytes = { version = "1", optional = true }
2323
http = "1"
2424
mime = { version = "0.3", optional = true }
25-
pgstac = { version = "0.1", path = "../pgstac", features = [
25+
pgstac = { version = "0.2.0", path = "../pgstac", features = [
2626
"tls",
2727
], optional = true }
2828
serde = "1"

server/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ To use this library in another application:
2929

3030
```toml
3131
[dependencies]
32-
stac-server = "0.2"
32+
stac-server = "0.3"
3333
```
3434

3535
### Deploying

0 commit comments

Comments
 (0)