From 6b948ccec11515b49a8a35697002ea382f58b4e3 Mon Sep 17 00:00:00 2001 From: Vincent Sarago Date: Tue, 2 Jul 2024 15:36:27 +0200 Subject: [PATCH] pre-release 3.0.0a3 (#128) Co-authored-by: Jonathan Healy --- CHANGES.md | 3 +++ VERSION | 2 +- setup.py | 6 +++--- stac_fastapi/pgstac/version.py | 2 +- 4 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index d4aa769..5b31a38 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -2,7 +2,10 @@ ## [Unreleased] +## [3.0.0a3] - 2024-07-01 + - Use `quote_plus` instead of `quote` to encode database's password ([#122](https://github.com/stac-utils/stac-fastapi-pgstac/pull/122)) +- Update stac-fastapi libraries to `~=3.0.0a4` ## [3.0.0a2] - 2024-06-18 diff --git a/VERSION b/VERSION index 3a5b5bc..4f22bc7 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.0.0a2 +3.0.0a3 diff --git a/setup.py b/setup.py index 590319a..384ffd1 100644 --- a/setup.py +++ b/setup.py @@ -10,9 +10,9 @@ "orjson", "pydantic", "stac_pydantic==3.1.*", - "stac-fastapi.api~=3.0.0a3", - "stac-fastapi.extensions~=3.0.0a3", - "stac-fastapi.types~=3.0.0a3", + "stac-fastapi.api~=3.0.0a4", + "stac-fastapi.extensions~=3.0.0a4", + "stac-fastapi.types~=3.0.0a4", "asyncpg", "buildpg", "brotli_asgi", diff --git a/stac_fastapi/pgstac/version.py b/stac_fastapi/pgstac/version.py index 09df47a..ce78ff4 100644 --- a/stac_fastapi/pgstac/version.py +++ b/stac_fastapi/pgstac/version.py @@ -1,3 +1,3 @@ """library version.""" -__version__ = "3.0.0a2" +__version__ = "3.0.0a3"