Skip to content

Commit

Permalink
release(stac-server): remove stac-types dependency (#599)
Browse files Browse the repository at this point in the history
## Closes

No open issue but the change in the PR added to the CHANGELOG should
have triggered a release of stac-server. The current release contains
the yanked `stac-types` crate which is breaking our build.

## Description

No code changes, just a note to trigger a release

## Checklist

Delete any checklist items that do not apply (e.g. if your change is
minor, it may not require documentation updates).

- [x] Commit messages are descriptive
- [x] (optional) Git commit messages follow [conventional
commits](https://www.conventionalcommits.org/en/v1.0.0/)
- [x] Changes are added to the CHANGELOG

<!-- markdownlint-disable-file MD041 -->

---------

Co-authored-by: Pete Gadomski <[email protected]>
  • Loading branch information
johnnylarner and gadomski authored Jan 14, 2025
1 parent 0476743 commit 9be20f8
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ mime = "0.3.17"
mockito = "1.5"
object_store = "0.11.0"
parquet = { version = "53.1.0", default-features = false }
pgstac = { version = "0.2.2", path = "crates/pgstac" }
pgstac = { version = "0.3.0", path = "crates/pgstac" }
pyo3 = "0.23.3"
pythonize = "0.23.0"
quote = "1.0"
Expand Down
5 changes: 4 additions & 1 deletion crates/pgstac/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.3.0] - 2025-01-14

### Added

- `Pgstac` trait ([#551](https://github.com/stac-utils/stac-rs/pull/551))
Expand Down Expand Up @@ -90,7 +92,8 @@ Bump dependencies.

Initial release

[unreleased]: https://github.com/stac-utils/stac-rs/compare/pgstac-v0.2.2...HEAD
[unreleased]: https://github.com/stac-utils/stac-rs/compare/pgstac-v0.3.0...HEAD
[0.3.0]: https://github.com/stac-utils/stac-rs/compare/pgstac-v0.2.2..pgstac-v0.3.0
[0.2.2]: https://github.com/stac-utils/stac-rs/compare/pgstac-v0.2.1..pgstac-v0.2.2
[0.2.1]: https://github.com/stac-utils/stac-rs/compare/pgstac-v0.2.0..pgstac-v0.2.1
[0.2.0]: https://github.com/stac-utils/stac-rs/compare/pgstac-v0.1.2..pgstac-v0.2.0
Expand Down
2 changes: 1 addition & 1 deletion crates/pgstac/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "pgstac"
description = "Rust interface for pgstac"
version = "0.2.2"
version = "0.3.0"
keywords = ["geospatial", "stac", "metadata", "raster", "database"]
categories = ["database", "data-structures", "science"]
authors.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/pgstac/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ In your `Cargo.toml`:

```toml
[dependencies]
pgstac = "0.2"
pgstac = "0.3"
```

See the [documentation](https://docs.rs/pgstac) for more.
Expand Down
9 changes: 8 additions & 1 deletion crates/server/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [Unreleased]

## [0.3.3] - 2025-01-14

### Removed

- **stac-types** dependency ([#561](https://github.com/stac-utils/stac-rs/pull/561))

## [0.3.2] - 2024-11-12

### Added
Expand Down Expand Up @@ -57,7 +63,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.2..main
[Unreleased]: https://github.com/stac-utils/stac-rs/compare/stac-server-v0.3.3..main
[0.3.3]: https://github.com/stac-utils/stac-rs/compare/stac-server-v0.3.2..stac-server-v0.3.3
[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
Expand Down
2 changes: 1 addition & 1 deletion crates/server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "stac-server"
description = "SpatioTemporal Asset Catalog (STAC) API server"
version = "0.3.2"
version = "0.3.3"
keywords = ["geospatial", "stac", "metadata", "geo", "server"]
categories = ["science", "data-structures"]
edition.workspace = true
Expand Down

0 comments on commit 9be20f8

Please sign in to comment.