From b889553c12264be150a9d7ea98a11a84bce3b193 Mon Sep 17 00:00:00 2001 From: vincentsarago Date: Wed, 8 Jan 2025 10:07:00 +0100 Subject: [PATCH 1/2] update changelog --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 72e1b49..6a4000b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ ## Unreleased +## 3.1.4 (2025-01-08) + +- Fix URL comparison for Landing page conformance (author @gadomski, https://github.com/stac-utils/stac-pydantic/pull/163) + ## 3.1.3 (2024-10-14) - Add optional `numberMatched` and `numberReturned` to `api.collections.Collections` model to match the OGC Common part2 specification From 2fe0dce583dcf505f2edaa4b37e5a4e481ded5b1 Mon Sep 17 00:00:00 2001 From: vincentsarago Date: Wed, 8 Jan 2025 10:09:25 +0100 Subject: [PATCH 2/2] update version and add python 3.13 --- .github/workflows/cicd.yml | 6 +++--- .github/workflows/release.yml | 2 +- pyproject.toml | 1 + stac_pydantic/version.py | 2 +- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index b22a78f..d33669d 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -9,20 +9,20 @@ on: - '*' pull_request: env: - LATEST_PY_VERSION: '3.12' + LATEST_PY_VERSION: '3.13' jobs: tests: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 34d9323..496008e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,7 +15,7 @@ jobs: - uses: actions/checkout@v4 - name: Set up Python 3.x - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: "3.x" diff --git a/pyproject.toml b/pyproject.toml index 2c9cdf9..d01281d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,6 +14,7 @@ classifiers=[ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "License :: OSI Approved :: MIT License", ] keywords=["stac", "pydantic", "validation"] diff --git a/stac_pydantic/version.py b/stac_pydantic/version.py index 31c42be..80ce5bd 100644 --- a/stac_pydantic/version.py +++ b/stac_pydantic/version.py @@ -1,5 +1,5 @@ """stac-pydantic and STAC spec versions.""" -__version__ = "3.1.3" +__version__ = "3.1.4" STAC_VERSION = "1.0.0"