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/CHANGELOG.md b/CHANGELOG.md index be20ace..1323568 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ ## Unreleased +## 3.1.4 (2025-01-08) + +- Fix URL comparison for Landing page conformance (#163, @gadomski) - Fix `Search` validation when `datetime` is `None` (#165, @gadomski) ## 3.1.3 (2024-10-14) 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"