Skip to content

Commit 4344dd7

Browse files
6.0.0 -> 6.1.0 (#862)
* 6.0.0 -> 6.1.0 * update/fix publishing * update requirements
1 parent fe9adb4 commit 4344dd7

File tree

11 files changed

+27
-15
lines changed

11 files changed

+27
-15
lines changed

CHANGES.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## [Unreleased]
44

5+
## [6.1.0] - 2025-10-30
6+
57
### Fixed
68

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

665667
* First PyPi release!
666668

667-
[Unreleased]: <https://github.com/stac-utils/stac-fastapi/compare/6.0.0..main>
669+
[Unreleased]: <https://github.com/stac-utils/stac-fastapi/compare/6.1.0..main>
670+
[6.1.0]: <https://github.com/stac-utils/stac-fastapi/compare/6.0.0..6.1.0>
668671
[6.0.0]: <https://github.com/stac-utils/stac-fastapi/compare/5.2.1..6.0.0>
669672
[5.2.1]: <https://github.com/stac-utils/stac-fastapi/compare/5.2.0..5.2.1>
670673
[5.2.0]: <https://github.com/stac-utils/stac-fastapi/compare/5.1.1..5.2.0>

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6.0.0
1+
6.1.0

pyproject.toml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "stac-fastapi"
3-
version = "6.0.0"
3+
version = "6.1.0"
44
description = "Python library for building a STAC-compliant FastAPI application."
55
requires-python = ">=3.9"
66
readme = "README.md"
@@ -23,6 +23,12 @@ members = [
2323
"stac_fastapi/*"
2424
]
2525

26+
[[tool.uv.index]]
27+
name = "testpypi"
28+
url = "https://test.pypi.org/simple/"
29+
publish-url = "https://test.pypi.org/legacy/"
30+
explicit = true
31+
2632
[dependency-groups]
2733
dev = [
2834
"pytest",
@@ -75,7 +81,7 @@ explicit_package_bases = true
7581
exclude = ["tests", ".venv"]
7682

7783
[tool.bumpversion]
78-
current_version = "6.0.0"
84+
current_version = "6.1.0"
7985
parse = """(?x)
8086
(?P<major>\\d+)\\.
8187
(?P<minor>\\d+)\\.
@@ -107,7 +113,7 @@ search = "{current_version}"
107113
replace = "{new_version}"
108114

109115
[[tool.bumpversion.files]]
110-
filename = "stac_fastapi/pyproject.toml"
116+
filename = "pyproject.toml"
111117
search = 'version = "{current_version}"'
112118
replace = 'version = "{new_version}"'
113119

scripts/publish

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ do
3838
;;
3939

4040
--test)
41-
TEST_PYPI="--repository testpypi"
41+
TEST_PYPI="--index testpypi"
4242
shift
4343
;;
4444

@@ -61,7 +61,7 @@ if [ "${BASH_SOURCE[0]}" = "${0}" ]; then
6161
do
6262
echo ${PACKAGE_DIR}
6363
rm -rf dist
64-
uv build --package PACKAGE_DIR
65-
uv publish --publish-url ${TEST_PYPI}
64+
uv build --package ${PACKAGE_DIR}
65+
uv publish ${TEST_PYPI}
6666
done
6767
fi

stac_fastapi/api/pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,13 @@ classifiers = [
2828
"Programming Language :: Python :: 3.11",
2929
"Programming Language :: Python :: 3.12",
3030
"Programming Language :: Python :: 3.13",
31+
"Programming Language :: Python :: 3.14",
3132
"License :: OSI Approved :: MIT License",
3233
]
3334
dynamic = ["version"]
3435
dependencies = [
3536
"brotli_asgi",
36-
"stac-fastapi.types~=6.0",
37+
"stac-fastapi.types~=6.1",
3738
]
3839

3940
[dependency-groups]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Library version."""
22

3-
__version__ = "6.0.0"
3+
__version__ = "6.1.0"

stac_fastapi/extensions/pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,13 @@ classifiers = [
2929
"Programming Language :: Python :: 3.11",
3030
"Programming Language :: Python :: 3.12",
3131
"Programming Language :: Python :: 3.13",
32+
"Programming Language :: Python :: 3.14",
3233
"License :: OSI Approved :: MIT License",
3334
]
3435
dynamic = ["version"]
3536
dependencies = [
36-
"stac-fastapi.types~=6.0",
37-
"stac-fastapi.api~=6.0",
37+
"stac-fastapi.types~=6.1",
38+
"stac-fastapi.api~=6.1",
3839
]
3940

4041
[dependency-groups]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Library version."""
22

3-
__version__ = "6.0.0"
3+
__version__ = "6.1.0"

stac_fastapi/types/pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ classifiers = [
2828
"Programming Language :: Python :: 3.11",
2929
"Programming Language :: Python :: 3.12",
3030
"Programming Language :: Python :: 3.13",
31+
"Programming Language :: Python :: 3.14",
3132
"License :: OSI Approved :: MIT License",
3233
]
3334
dynamic = ["version"]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Library version."""
22

3-
__version__ = "6.0.0"
3+
__version__ = "6.1.0"

0 commit comments

Comments
 (0)