Skip to content

Commit 3ba567c

Browse files
authored
stage version 0.9.1 (#280)
1 parent 3336cbb commit 3ba567c

File tree

7 files changed

+11
-7
lines changed

7 files changed

+11
-7
lines changed

CHANGELOG.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,14 @@ 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.9.1]
88

99
### Fixed
1010
- Fixed double nested extent when using trigger based update collection extent. (Fixes #274)
11+
- Fix time formatting (Fixes #275)
12+
- Relaxes smart-open dependency check (Fixes #273)
13+
- Switch to uv for docker image
14+
1115

1216
### [v0.9.0]
1317

src/pgstac/migrations/pgstac.0.9.0-unreleased.sql renamed to src/pgstac/migrations/pgstac.0.9.0-0.9.1.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -393,4 +393,4 @@ RESET ROLE;
393393

394394
SET ROLE pgstac_ingest;
395395
SELECT update_partition_stats_q(partition) FROM partitions_view;
396-
SELECT set_version('unreleased');
396+
SELECT set_version('0.9.1');

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -4492,4 +4492,4 @@ RESET ROLE;
44924492

44934493
SET ROLE pgstac_ingest;
44944494
SELECT update_partition_stats_q(partition) FROM partitions_view;
4495-
SELECT set_version('unreleased');
4495+
SELECT set_version('0.9.1');

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

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

0 commit comments

Comments
 (0)