Skip to content

Commit ebb45f1

Browse files
authored
Release for v0.8.3 (#234)
* update changelog, prep release
1 parent 0aff9ef commit ebb45f1

File tree

7 files changed

+15
-7
lines changed

7 files changed

+15
-7
lines changed

CHANGELOG.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,17 @@ All notable changes to this project will be documented in this file.
33

44
The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
6+
## [v0.8.3]
7+
8+
### Added
9+
- Add support for arm64 to Docker images
10+
11+
### Fixed
12+
- Fixes a critical bug when using the ingest_staging_upsert table or the upsert_item/upsert_items functions to update records with existing data where the existing row would get deleted, but the new row would not get added.
613

714
## [v0.8.2]
815

9-
## Added
16+
### Added
1017
- Add support functions and tests for Collection Search
1118
- Add configuration parameter for base_url to be able to generate absolute links
1219
- With this release, this is only used to create links for paging in collection_search
@@ -414,6 +421,7 @@ _TODO_
414421

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

424+
[v0.8.3]: https://github.com/stac-utils/pgstac/compare/v0.8.2...v0.8.3
417425
[v0.8.2]: https://github.com/stac-utils/pgstac/compare/v0.8.1...v0.8.2
418426
[v0.8.1]: https://github.com/stac-utils/pgstac/compare/v0.8.0...v0.8.1
419427
[v0.8.0]: https://github.com/stac-utils/pgstac/compare/v0.7.10...v0.8.0

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -358,4 +358,4 @@ RESET ROLE;
358358

359359
SET ROLE pgstac_ingest;
360360
SELECT update_partition_stats_q(partition) FROM partitions_view;
361-
SELECT set_version('unreleased');
361+
SELECT set_version('0.8.3');

src/pgstac/migrations/pgstac.unreleased.sql src/pgstac/migrations/pgstac.0.8.3.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -4386,4 +4386,4 @@ RESET ROLE;
43864386

43874387
SET ROLE pgstac_ingest;
43884388
SELECT update_partition_stats_q(partition) FROM partitions_view;
4389-
SELECT set_version('unreleased');
4389+
SELECT set_version('0.8.3');

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

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

0 commit comments

Comments
 (0)