Skip to content

Commit 3530dbc

Browse files
committed
6.0.0 -> 6.1.0
1 parent fe9adb4 commit 3530dbc

File tree

10 files changed

+17
-11
lines changed

10 files changed

+17
-11
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: 3 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"
@@ -75,7 +75,7 @@ explicit_package_bases = true
7575
exclude = ["tests", ".venv"]
7676

7777
[tool.bumpversion]
78-
current_version = "6.0.0"
78+
current_version = "6.1.0"
7979
parse = """(?x)
8080
(?P<major>\\d+)\\.
8181
(?P<minor>\\d+)\\.
@@ -107,7 +107,7 @@ search = "{current_version}"
107107
replace = "{new_version}"
108108

109109
[[tool.bumpversion.files]]
110-
filename = "stac_fastapi/pyproject.toml"
110+
filename = "pyproject.toml"
111111
search = 'version = "{current_version}"'
112112
replace = 'version = "{new_version}"'
113113

stac_fastapi/api/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"

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"

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)