Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## [Unreleased]

## [6.1.0] - 2025-10-30

### Fixed

- fixed typing of base_model and mixins parameters ([#852](https://github.com/stac-utils/stac-fastapi/pull/852))
Expand Down Expand Up @@ -664,7 +666,8 @@ Full changelog: https://stac-utils.github.io/stac-fastapi/migrations/v3.0.0/#cha

* First PyPi release!

[Unreleased]: <https://github.com/stac-utils/stac-fastapi/compare/6.0.0..main>
[Unreleased]: <https://github.com/stac-utils/stac-fastapi/compare/6.1.0..main>
[6.1.0]: <https://github.com/stac-utils/stac-fastapi/compare/6.0.0..6.1.0>
[6.0.0]: <https://github.com/stac-utils/stac-fastapi/compare/5.2.1..6.0.0>
[5.2.1]: <https://github.com/stac-utils/stac-fastapi/compare/5.2.0..5.2.1>
[5.2.0]: <https://github.com/stac-utils/stac-fastapi/compare/5.1.1..5.2.0>
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6.0.0
6.1.0
12 changes: 9 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "stac-fastapi"
version = "6.0.0"
version = "6.1.0"
description = "Python library for building a STAC-compliant FastAPI application."
requires-python = ">=3.9"
readme = "README.md"
Expand All @@ -23,6 +23,12 @@ members = [
"stac_fastapi/*"
]

[[tool.uv.index]]
name = "testpypi"
url = "https://test.pypi.org/simple/"
publish-url = "https://test.pypi.org/legacy/"
explicit = true

[dependency-groups]
dev = [
"pytest",
Expand Down Expand Up @@ -75,7 +81,7 @@ explicit_package_bases = true
exclude = ["tests", ".venv"]

[tool.bumpversion]
current_version = "6.0.0"
current_version = "6.1.0"
parse = """(?x)
(?P<major>\\d+)\\.
(?P<minor>\\d+)\\.
Expand Down Expand Up @@ -107,7 +113,7 @@ search = "{current_version}"
replace = "{new_version}"

[[tool.bumpversion.files]]
filename = "stac_fastapi/pyproject.toml"
filename = "pyproject.toml"
search = 'version = "{current_version}"'
replace = 'version = "{new_version}"'

Expand Down
6 changes: 3 additions & 3 deletions scripts/publish
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ do
;;

--test)
TEST_PYPI="--repository testpypi"
TEST_PYPI="--index testpypi"
shift
;;

Expand All @@ -61,7 +61,7 @@ if [ "${BASH_SOURCE[0]}" = "${0}" ]; then
do
echo ${PACKAGE_DIR}
rm -rf dist
uv build --package PACKAGE_DIR
uv publish --publish-url ${TEST_PYPI}
uv build --package ${PACKAGE_DIR}
uv publish ${TEST_PYPI}
done
fi
3 changes: 2 additions & 1 deletion stac_fastapi/api/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,13 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"License :: OSI Approved :: MIT License",
]
dynamic = ["version"]
dependencies = [
"brotli_asgi",
"stac-fastapi.types~=6.0",
"stac-fastapi.types~=6.1",
]

[dependency-groups]
Expand Down
2 changes: 1 addition & 1 deletion stac_fastapi/api/stac_fastapi/api/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Library version."""

__version__ = "6.0.0"
__version__ = "6.1.0"
5 changes: 3 additions & 2 deletions stac_fastapi/extensions/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,13 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"License :: OSI Approved :: MIT License",
]
dynamic = ["version"]
dependencies = [
"stac-fastapi.types~=6.0",
"stac-fastapi.api~=6.0",
"stac-fastapi.types~=6.1",
"stac-fastapi.api~=6.1",
]

[dependency-groups]
Expand Down
2 changes: 1 addition & 1 deletion stac_fastapi/extensions/stac_fastapi/extensions/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Library version."""

__version__ = "6.0.0"
__version__ = "6.1.0"
1 change: 1 addition & 0 deletions stac_fastapi/types/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"License :: OSI Approved :: MIT License",
]
dynamic = ["version"]
Expand Down
2 changes: 1 addition & 1 deletion stac_fastapi/types/stac_fastapi/types/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Library version."""

__version__ = "6.0.0"
__version__ = "6.1.0"
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.