Skip to content

Commit fa42985

Browse files
Release/v6.0.0 (#848)
* update changelog * 5.2.0 -> 6.0.0
1 parent c66988f commit fa42985

File tree

8 files changed

+12
-9
lines changed

8 files changed

+12
-9
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.0.0] - 2025-06-19
6+
57
### Changed
68

79
- move `transaction` clients and models to `stac_fastapi.extension` sub-module
@@ -651,7 +653,8 @@ Full changelog: https://stac-utils.github.io/stac-fastapi/migrations/v3.0.0/#cha
651653

652654
* First PyPi release!
653655

654-
[Unreleased]: <https://github.com/stac-utils/stac-fastapi/compare/5.2.1..main>
656+
[Unreleased]: <https://github.com/stac-utils/stac-fastapi/compare/6.0.0..main>
657+
[6.0.0]: <https://github.com/stac-utils/stac-fastapi/compare/5.2.1..6.0.0>
655658
[5.2.1]: <https://github.com/stac-utils/stac-fastapi/compare/5.2.0..5.2.1>
656659
[5.2.0]: <https://github.com/stac-utils/stac-fastapi/compare/5.1.1..5.2.0>
657660
[5.1.1]: <https://github.com/stac-utils/stac-fastapi/compare/5.1.0..5.1.1>

VERSION

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

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ explicit_package_bases = true
3030
exclude = ["tests", ".venv"]
3131

3232
[tool.bumpversion]
33-
current_version = "5.2.1"
33+
current_version = "6.0.0"
3434
parse = """(?x)
3535
(?P<major>\\d+)\\.
3636
(?P<minor>\\d+)\\.

stac_fastapi/api/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
install_requires = [
99
"brotli_asgi",
10-
"stac-fastapi.types~=5.2",
10+
"stac-fastapi.types~=6.0",
1111
]
1212

1313
extra_reqs = {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Library version."""
22

3-
__version__ = "5.2.1"
3+
__version__ = "6.0.0"

stac_fastapi/extensions/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
desc = f.read()
88

99
install_requires = [
10-
"stac-fastapi.types~=5.2",
11-
"stac-fastapi.api~=5.2",
10+
"stac-fastapi.types~=6.0",
11+
"stac-fastapi.api~=6.0",
1212
]
1313

1414
extra_reqs = {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Library version."""
22

3-
__version__ = "5.2.1"
3+
__version__ = "6.0.0"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Library version."""
22

3-
__version__ = "5.2.1"
3+
__version__ = "6.0.0"

0 commit comments

Comments
 (0)