Skip to content

Commit 9ee1109

Browse files
Release/v5.0.2 (#226)
* prepare release * Bump version: 5.0.1 → 5.0.2 * update stac-api-validator
1 parent 34d0fad commit 9ee1109

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/cicd.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
runs-on: ubuntu-latest
5555
services:
5656
pgstac:
57-
image: ghcr.io/stac-utils/pgstac:v0.8.6
57+
image: ghcr.io/stac-utils/pgstac:v0.9.5
5858
env:
5959
POSTGRES_USER: username
6060
POSTGRES_PASSWORD: password
@@ -78,14 +78,14 @@ jobs:
7878
- name: Setup Python
7979
uses: actions/setup-python@v5
8080
with:
81-
python-version: "3.10"
81+
python-version: "3.11"
8282
cache: pip
8383
cache-dependency-path: setup.py
8484

8585
- name: Install stac-fastapi and stac-api-validator
8686
run: |
8787
python -m pip install --upgrade pip
88-
python -m pip install .[server] stac-api-validator==0.4.1
88+
python -m pip install .[server] stac-api-validator==0.6.5
8989
9090
- name: Load data and validate
9191
run: python -m stac_fastapi.pgstac.app & ./scripts/wait-for-it.sh localhost:8080 && python ./scripts/ingest_joplin.py http://localhost:8080 && ./scripts/validate http://localhost:8080
@@ -110,7 +110,7 @@ jobs:
110110
- name: Setup Python
111111
uses: actions/setup-python@v5
112112
with:
113-
python-version: "3.10"
113+
python-version: "3.11"
114114
cache: pip
115115
cache-dependency-path: setup.py
116116

CHANGES.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## [5.0.2] - 2025-04-04
5+
## [5.0.2] - 2025-04-07
66

77
### Fixed
88

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.0.1
1+
5.0.2

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ ignore = [
2929

3030

3131
[tool.bumpversion]
32-
current_version = "5.0.1"
32+
current_version = "5.0.2"
3333
parse = """(?x)
3434
(?P<major>\\d+)\\.
3535
(?P<minor>\\d+)\\.

stac_fastapi/pgstac/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""library version."""
22

3-
__version__ = "5.0.1"
3+
__version__ = "5.0.2"

0 commit comments

Comments
 (0)