Skip to content

Commit

Permalink
stage v0.9.2 (#330)
Browse files Browse the repository at this point in the history
  • Loading branch information
bitner authored Dec 6, 2024
1 parent de45386 commit bf498be
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 8 deletions.
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]
## [v0.9.2]

### Added

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

### Fixed

- Add `open=True` in `psycopg.ConnectionPool` to avoid future behavior change
- Switch from postgres `server_version` to `server_version_num` to get PG version (Fixes #300)
- Allow read-only replicas work even when the context extension is enabled (Fixes #300)
- Consistently ensure use of instantiated postgres fields when addressing with 'properties.' prefix

### Changed
- Move rust hydration to a separate repo

## [v0.9.1]

Expand Down Expand Up @@ -531,7 +537,7 @@ _TODO_

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

[Unreleased]: https://github.com/stac-utils/pgstac/compare/v0.9.1...main
[v0.9.2]: https://github.com/stac-utils/pgstac/compare/v0.9.1...v0.9.2
[v0.9.1]: https://github.com/stac-utils/pgstac/compare/v0.9.0...v0.9.1
[v0.9.0]: https://github.com/stac-utils/pgstac/compare/v0.8.5...v0.9.0
[v0.8.5]: https://github.com/stac-utils/pgstac/compare/v0.8.4...v0.8.5
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -962,4 +962,4 @@ RESET ROLE;

SET ROLE pgstac_ingest;
SELECT update_partition_stats_q(partition) FROM partitions_view;
SELECT set_version('unreleased');
SELECT set_version('0.9.2');
Original file line number Diff line number Diff line change
Expand Up @@ -4566,4 +4566,4 @@ RESET ROLE;

SET ROLE pgstac_ingest;
SELECT update_partition_stats_q(partition) FROM partitions_view;
SELECT set_version('unreleased');
SELECT set_version('0.9.2');
2 changes: 1 addition & 1 deletion src/pgstac/pgstac.sql
Original file line number Diff line number Diff line change
Expand Up @@ -4566,4 +4566,4 @@ RESET ROLE;

SET ROLE pgstac_ingest;
SELECT update_partition_stats_q(partition) FROM partitions_view;
SELECT set_version('unreleased');
SELECT set_version('0.9.2');
2 changes: 1 addition & 1 deletion src/pgstac/sql/999_version.sql
Original file line number Diff line number Diff line change
@@ -1 +1 @@
SELECT set_version('unreleased');
SELECT set_version('0.9.2');
2 changes: 1 addition & 1 deletion src/pypgstac/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "pypgstac"
version = "0.9.1-dev"
version = "0.9.2"
description = "Schema, functions and a python library for storing and accessing STAC collections and items in PostgreSQL"
readme = "README.md"
requires-python = ">=3.8"
Expand Down
3 changes: 2 additions & 1 deletion src/pypgstac/src/pypgstac/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
"""Version."""
__version__ = "0.9.1-dev"

__version__ = "0.9.2"

0 comments on commit bf498be

Please sign in to comment.