Skip to content

Commit

Permalink
revert to fastapi and update version (#746)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
vincentsarago authored Aug 27, 2024
1 parent 4979a89 commit cf55d66
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 9 deletions.
9 changes: 8 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## [Unreleased]

## [3.0.1] - 2024-08-27

### Changed

* Update fastapi version to `>=0.109.0`

## [3.0.0] - 2024-07-29

Full changelog: https://stac-utils.github.io/stac-fastapi/migrations/v3.0.0/#changelog
Expand Down Expand Up @@ -468,7 +474,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/3.0.0..main>
[Unreleased]: <https://github.com/stac-utils/stac-fastapi/compare/3.0.1..main>
[3.0.1]: <https://github.com/stac-utils/stac-fastapi/compare/3.0.0..3.0.1>
[3.0.0]: <https://github.com/stac-utils/stac-fastapi/compare/2.5.5.post1..3.0.0>
[2.5.5.post1]: <https://github.com/stac-utils/stac-fastapi/compare/2.5.5..2.5.5.post1>
[2.5.5]: <https://github.com/stac-utils/stac-fastapi/compare/2.5.4..2.5.5>
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ install:

.PHONY: docs-image
docs-image:
docker-compose -f docker-compose.docs.yml \
docker compose -f docker-compose.docs.yml \
build

.PHONY: docs
docs: docs-image
docker-compose -f docker-compose.docs.yml \
docker compose -f docker-compose.docs.yml \
run docs

.PHONY: test
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.0.0
3.0.1
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ section-order = ["future", "standard-library", "third-party", "first-party", "lo
quote-style = "double"

[tool.bumpversion]
current_version = "3.0.0"
current_version = "3.0.1"
parse = """(?x)
(?P<major>\\d+)\\.
(?P<minor>\\d+)\\.
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__ = "3.0.0"
__version__ = "3.0.1"
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__ = "3.0.0"
__version__ = "3.0.1"
2 changes: 1 addition & 1 deletion stac_fastapi/types/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
desc = f.read()

install_requires = [
"fastapi-slim>=0.111.0",
"fastapi>=0.109.0",
"attrs>=23.2.0",
"pydantic-settings>=2",
"stac_pydantic~=3.1",
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__ = "3.0.0"
__version__ = "3.0.1"

0 comments on commit cf55d66

Please sign in to comment.