Skip to content

Commit 497625a

Browse files
authored
stage v0.9.8 (#380)
1 parent bb513f1 commit 497625a

File tree

7 files changed

+8
-7
lines changed

7 files changed

+8
-7
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
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.8]
99
### Fixed
1010
- Allow array as q parameter for full text search
1111

@@ -580,6 +580,7 @@ _TODO_
580580

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

583+
[v0.9.8]: https://github.com/stac-utils/pgstac/compare/v0.9.7...v0.9.8
583584
[v0.9.7]: https://github.com/stac-utils/pgstac/compare/v0.9.6...v0.9.7
584585
[v0.9.6]: https://github.com/stac-utils/pgstac/compare/v0.9.5...v0.9.6
585586
[v0.9.5]: https://github.com/stac-utils/pgstac/compare/v0.9.4...v0.9.5

src/pgstac/migrations/pgstac.0.9.7-unreleased.sql renamed to src/pgstac/migrations/pgstac.0.9.7-0.9.8.sql

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

489489
SET ROLE pgstac_ingest;
490490
SELECT update_partition_stats_q(partition) FROM partitions_view;
491-
SELECT set_version('unreleased');
491+
SELECT set_version('0.9.8');

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

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

45794579
SET ROLE pgstac_ingest;
45804580
SELECT update_partition_stats_q(partition) FROM partitions_view;
4581-
SELECT set_version('unreleased');
4581+
SELECT set_version('0.9.8');

src/pgstac/pgstac.sql

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

45794579
SET ROLE pgstac_ingest;
45804580
SELECT update_partition_stats_q(partition) FROM partitions_view;
4581-
SELECT set_version('unreleased');
4581+
SELECT set_version('0.9.8');

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.8');

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.7-dev"
3+
version = "0.9.8"
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"

src/pypgstac/src/pypgstac/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Version."""
22

3-
__version__ = "0.9.7-dev"
3+
__version__ = "0.9.8"

0 commit comments

Comments
 (0)