Skip to content

Commit 45ac247

Browse files
authored
release: prepare 0.9.7 release (#378)
1 parent e7afcaf commit 45ac247

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.7]
99

1010
### Fixed
1111
- Fix bad handling of leading +/- terms in free-text search
@@ -575,6 +575,7 @@ _TODO_
575575

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

578+
[v0.9.7]: https://github.com/stac-utils/pgstac/compare/v0.9.6...v0.9.7
578579
[v0.9.6]: https://github.com/stac-utils/pgstac/compare/v0.9.5...v0.9.6
579580
[v0.9.5]: https://github.com/stac-utils/pgstac/compare/v0.9.4...v0.9.5
580581
[v0.9.4]: https://github.com/stac-utils/pgstac/compare/v0.9.3...v0.9.4

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

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

381381
SET ROLE pgstac_ingest;
382382
SELECT update_partition_stats_q(partition) FROM partitions_view;
383-
SELECT set_version('unreleased');
383+
SELECT set_version('0.9.7');

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

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

45684568
SET ROLE pgstac_ingest;
45694569
SELECT update_partition_stats_q(partition) FROM partitions_view;
4570-
SELECT set_version('unreleased');
4570+
SELECT set_version('0.9.7');

src/pgstac/pgstac.sql

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

45684568
SET ROLE pgstac_ingest;
45694569
SELECT update_partition_stats_q(partition) FROM partitions_view;
4570-
SELECT set_version('unreleased');
4570+
SELECT set_version('0.9.7');

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

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.6-dev"
3+
version = "0.9.7"
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.6-dev"
3+
__version__ = "0.9.7"

0 commit comments

Comments
 (0)