Skip to content

Commit cf55d66

Browse files
authoredAug 27, 2024··
revert to fastapi and update version (#746)
* revert to fastapi and update version * fix makefile * Bump version: 3.0.0 → 3.0.1 * Update stac_fastapi/types/setup.py * Update CHANGES.md
1 parent 4979a89 commit cf55d66

File tree

8 files changed

+16
-9
lines changed

8 files changed

+16
-9
lines changed
 

‎CHANGES.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
## [Unreleased]
44

5+
## [3.0.1] - 2024-08-27
6+
7+
### Changed
8+
9+
* Update fastapi version to `>=0.109.0`
10+
511
## [3.0.0] - 2024-07-29
612

713
Full changelog: https://stac-utils.github.io/stac-fastapi/migrations/v3.0.0/#changelog
@@ -468,7 +474,8 @@ Full changelog: https://stac-utils.github.io/stac-fastapi/migrations/v3.0.0/#cha
468474

469475
* First PyPi release!
470476

471-
[Unreleased]: <https://github.com/stac-utils/stac-fastapi/compare/3.0.0..main>
477+
[Unreleased]: <https://github.com/stac-utils/stac-fastapi/compare/3.0.1..main>
478+
[3.0.1]: <https://github.com/stac-utils/stac-fastapi/compare/3.0.0..3.0.1>
472479
[3.0.0]: <https://github.com/stac-utils/stac-fastapi/compare/2.5.5.post1..3.0.0>
473480
[2.5.5.post1]: <https://github.com/stac-utils/stac-fastapi/compare/2.5.5..2.5.5.post1>
474481
[2.5.5]: <https://github.com/stac-utils/stac-fastapi/compare/2.5.4..2.5.5>

‎Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ install:
1111

1212
.PHONY: docs-image
1313
docs-image:
14-
docker-compose -f docker-compose.docs.yml \
14+
docker compose -f docker-compose.docs.yml \
1515
build
1616

1717
.PHONY: docs
1818
docs: docs-image
19-
docker-compose -f docker-compose.docs.yml \
19+
docker compose -f docker-compose.docs.yml \
2020
run docs
2121

2222
.PHONY: test

‎VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.0.0
1+
3.0.1

‎pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ section-order = ["future", "standard-library", "third-party", "first-party", "lo
2424
quote-style = "double"
2525

2626
[tool.bumpversion]
27-
current_version = "3.0.0"
27+
current_version = "3.0.1"
2828
parse = """(?x)
2929
(?P<major>\\d+)\\.
3030
(?P<minor>\\d+)\\.
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Library version."""
22

3-
__version__ = "3.0.0"
3+
__version__ = "3.0.1"
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Library version."""
22

3-
__version__ = "3.0.0"
3+
__version__ = "3.0.1"

‎stac_fastapi/types/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
desc = f.read()
77

88
install_requires = [
9-
"fastapi-slim>=0.111.0",
9+
"fastapi>=0.109.0",
1010
"attrs>=23.2.0",
1111
"pydantic-settings>=2",
1212
"stac_pydantic~=3.1",
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Library version."""
22

3-
__version__ = "3.0.0"
3+
__version__ = "3.0.1"

0 commit comments

Comments
 (0)
Please sign in to comment.