Skip to content

Commit bf498be

Browse files
authored
stage v0.9.2 (#330)
1 parent de45386 commit bf498be

File tree

7 files changed

+15
-8
lines changed

7 files changed

+15
-8
lines changed

CHANGELOG.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](http://semver.org/).
77

8-
## [Unreleased]
8+
## [v0.9.2]
99

1010
### Added
1111

@@ -14,12 +14,18 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1414
[OGC API - Features syntax](https://docs.ogc.org/DRAFTS/24-031.html) into a `tsquery`
1515
statement which is used to compare to the description, title, and keywords fields in items or collection_search
1616
- the text search is un-indexed and will be very slow for item-level searches!
17+
- Add support for Postgres 17
18+
- Support for adding data to the private field using the pypgstac loader
1719

1820
### Fixed
1921

2022
- Add `open=True` in `psycopg.ConnectionPool` to avoid future behavior change
2123
- Switch from postgres `server_version` to `server_version_num` to get PG version (Fixes #300)
2224
- Allow read-only replicas work even when the context extension is enabled (Fixes #300)
25+
- Consistently ensure use of instantiated postgres fields when addressing with 'properties.' prefix
26+
27+
### Changed
28+
- Move rust hydration to a separate repo
2329

2430
## [v0.9.1]
2531

@@ -531,7 +537,7 @@ _TODO_
531537

532538
- Fixed issue with pypgstac loads which caused some writes to fail ([#18](https://github.com/stac-utils/pgstac/pull/18))
533539

534-
[Unreleased]: https://github.com/stac-utils/pgstac/compare/v0.9.1...main
540+
[v0.9.2]: https://github.com/stac-utils/pgstac/compare/v0.9.1...v0.9.2
535541
[v0.9.1]: https://github.com/stac-utils/pgstac/compare/v0.9.0...v0.9.1
536542
[v0.9.0]: https://github.com/stac-utils/pgstac/compare/v0.8.5...v0.9.0
537543
[v0.8.5]: https://github.com/stac-utils/pgstac/compare/v0.8.4...v0.8.5

src/pgstac/migrations/pgstac.0.9.1-unreleased.sql renamed to src/pgstac/migrations/pgstac.0.9.1-0.9.2.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -962,4 +962,4 @@ RESET ROLE;
962962

963963
SET ROLE pgstac_ingest;
964964
SELECT update_partition_stats_q(partition) FROM partitions_view;
965-
SELECT set_version('unreleased');
965+
SELECT set_version('0.9.2');

src/pgstac/migrations/pgstac.unreleased.sql renamed to src/pgstac/migrations/pgstac.0.9.2.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4566,4 +4566,4 @@ RESET ROLE;
45664566

45674567
SET ROLE pgstac_ingest;
45684568
SELECT update_partition_stats_q(partition) FROM partitions_view;
4569-
SELECT set_version('unreleased');
4569+
SELECT set_version('0.9.2');

src/pgstac/pgstac.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4566,4 +4566,4 @@ RESET ROLE;
45664566

45674567
SET ROLE pgstac_ingest;
45684568
SELECT update_partition_stats_q(partition) FROM partitions_view;
4569-
SELECT set_version('unreleased');
4569+
SELECT set_version('0.9.2');

src/pgstac/sql/999_version.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
SELECT set_version('unreleased');
1+
SELECT set_version('0.9.2');

src/pypgstac/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "pypgstac"
3-
version = "0.9.1-dev"
3+
version = "0.9.2"
44
description = "Schema, functions and a python library for storing and accessing STAC collections and items in PostgreSQL"
55
readme = "README.md"
66
requires-python = ">=3.8"
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
"""Version."""
2-
__version__ = "0.9.1-dev"
2+
3+
__version__ = "0.9.2"

0 commit comments

Comments
 (0)