diff --git a/.github/workflows/cicd.yaml b/.github/workflows/cicd.yaml index 1780173..fcb9393 100644 --- a/.github/workflows/cicd.yaml +++ b/.github/workflows/cicd.yaml @@ -54,7 +54,7 @@ jobs: runs-on: ubuntu-latest services: pgstac: - image: ghcr.io/stac-utils/pgstac:v0.8.6 + image: ghcr.io/stac-utils/pgstac:v0.9.5 env: POSTGRES_USER: username POSTGRES_PASSWORD: password @@ -78,14 +78,14 @@ jobs: - name: Setup Python uses: actions/setup-python@v5 with: - python-version: "3.10" + python-version: "3.11" cache: pip cache-dependency-path: setup.py - name: Install stac-fastapi and stac-api-validator run: | python -m pip install --upgrade pip - python -m pip install .[server] stac-api-validator==0.4.1 + python -m pip install .[server] stac-api-validator==0.6.5 - name: Load data and validate 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: - name: Setup Python uses: actions/setup-python@v5 with: - python-version: "3.10" + python-version: "3.11" cache: pip cache-dependency-path: setup.py diff --git a/CHANGES.md b/CHANGES.md index f58e544..f3481d1 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -2,7 +2,7 @@ ## [Unreleased] -## [5.0.2] - 2025-04-04 +## [5.0.2] - 2025-04-07 ### Fixed diff --git a/VERSION b/VERSION index 6b244dc..a1ef0ca 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -5.0.1 +5.0.2 diff --git a/pyproject.toml b/pyproject.toml index 6e0bf2c..48d3d60 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,7 +29,7 @@ ignore = [ [tool.bumpversion] -current_version = "5.0.1" +current_version = "5.0.2" parse = """(?x) (?P\\d+)\\. (?P\\d+)\\. diff --git a/stac_fastapi/pgstac/version.py b/stac_fastapi/pgstac/version.py index 13b59a7..5d558c4 100644 --- a/stac_fastapi/pgstac/version.py +++ b/stac_fastapi/pgstac/version.py @@ -1,3 +1,3 @@ """library version.""" -__version__ = "5.0.1" +__version__ = "5.0.2"