Skip to content

Commit

Permalink
Release for v0.8.3 (#234)
Browse files Browse the repository at this point in the history
* update changelog, prep release
  • Loading branch information
bitner authored Jan 24, 2024
1 parent 0aff9ef commit ebb45f1
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 7 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,17 @@ 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/).
## [v0.8.3]

### Added
- Add support for arm64 to Docker images

### Fixed
- 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.

## [v0.8.2]

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

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

[v0.8.3]: https://github.com/stac-utils/pgstac/compare/v0.8.2...v0.8.3
[v0.8.2]: https://github.com/stac-utils/pgstac/compare/v0.8.1...v0.8.2
[v0.8.1]: https://github.com/stac-utils/pgstac/compare/v0.8.0...v0.8.1
[v0.8.0]: https://github.com/stac-utils/pgstac/compare/v0.7.10...v0.8.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -358,4 +358,4 @@ RESET ROLE;

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

SET ROLE pgstac_ingest;
SELECT update_partition_stats_q(partition) FROM partitions_view;
SELECT set_version('unreleased');
SELECT set_version('0.8.3');
2 changes: 1 addition & 1 deletion src/pgstac/pgstac.sql
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.8.3');
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.8.2-dev"
version = "0.8.3"
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
2 changes: 1 addition & 1 deletion src/pypgstac/python/pypgstac/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""Version."""
__version__ = "0.8.2-dev"
__version__ = "0.8.3"

0 comments on commit ebb45f1

Please sign in to comment.