Skip to content

Commit 8ef8552

Browse files
authored
update changelog for release (#228)
1 parent e8ef344 commit 8ef8552

File tree

7 files changed

+8
-7
lines changed

7 files changed

+8
-7
lines changed

CHANGELOG.md

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

7-
## [unreleased]
7+
## [v0.8.2]
88

99
## Added
1010
- Add support functions and tests for Collection Search
@@ -414,6 +414,7 @@ _TODO_
414414

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

417+
[v0.8.2]: https://github.com/stac-utils/pgstac/compare/v0.8.1...v0.8.2
417418
[v0.8.1]: https://github.com/stac-utils/pgstac/compare/v0.8.0...v0.8.1
418419
[v0.8.0]: https://github.com/stac-utils/pgstac/compare/v0.7.10...v0.8.0
419420
[v0.7.10]: https://github.com/stac-utils/pgstac/compare/v0.7.9...v0.7.10

src/pgstac/migrations/pgstac.0.8.1-unreleased.sql src/pgstac/migrations/pgstac.0.8.1-0.8.2.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -1394,4 +1394,4 @@ RESET ROLE;
13941394

13951395
SET ROLE pgstac_ingest;
13961396
SELECT update_partition_stats_q(partition) FROM partitions_view;
1397-
SELECT set_version('unreleased');
1397+
SELECT set_version('0.8.2');

src/pgstac/migrations/pgstac.unreleased.sql src/pgstac/migrations/pgstac.0.8.2.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -4380,4 +4380,4 @@ RESET ROLE;
43804380

43814381
SET ROLE pgstac_ingest;
43824382
SELECT update_partition_stats_q(partition) FROM partitions_view;
4383-
SELECT set_version('unreleased');
4383+
SELECT set_version('0.8.2');

src/pgstac/pgstac.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
migrations/pgstac.unreleased.sql
1+
migrations/pgstac.0.8.2.sql

src/pgstac/sql/999_version.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
SELECT set_version('unreleased');
1+
SELECT set_version('0.8.2');

src/pypgstac/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "pypgstac"
3-
version = "0.8.1-dev"
3+
version = "0.8.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"
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
"""Version."""
2-
__version__ = "0.8.1-dev"
2+
__version__ = "0.8.2"

0 commit comments

Comments
 (0)