Skip to content

Commit

Permalink
Release/v5.0.0 (#794)
Browse files Browse the repository at this point in the history
* update changelog

* 4.0.1 -> 5.0.0
  • Loading branch information
vincentsarago authored Jan 30, 2025
1 parent df4c7fa commit dda302c
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 9 deletions.
5 changes: 4 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## [Unreleased]

## [5.0.0] - 2025-01-30

### Changed

- refactored conformance classes for extensions
Expand Down Expand Up @@ -561,7 +563,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/4.0.1..main>
[Unreleased]: <https://github.com/stac-utils/stac-fastapi/compare/5.0.0..main>
[5.0.0]: <https://github.com/stac-utils/stac-fastapi/compare/4.0.1..5.0.0>
[4.0.1]: <https://github.com/stac-utils/stac-fastapi/compare/4.0.0..4.0.1>
[4.0.0]: <https://github.com/stac-utils/stac-fastapi/compare/3.0.5..4.0.0>
[3.0.5]: <https://github.com/stac-utils/stac-fastapi/compare/3.0.4..3.0.5>
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.0.1
5.0.0
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 = "4.0.1"
current_version = "5.0.0"
parse = """(?x)
(?P<major>\\d+)\\.
(?P<minor>\\d+)\\.
Expand Down
2 changes: 1 addition & 1 deletion stac_fastapi/api/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

install_requires = [
"brotli_asgi",
"stac-fastapi.types~=4.0",
"stac-fastapi.types~=5.0",
]

extra_reqs = {
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__ = "4.0.1"
__version__ = "5.0.0"
4 changes: 2 additions & 2 deletions stac_fastapi/extensions/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
desc = f.read()

install_requires = [
"stac-fastapi.types~=4.0",
"stac-fastapi.api~=4.0",
"stac-fastapi.types~=5.0",
"stac-fastapi.api~=5.0",
]

extra_reqs = {
Expand Down
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__ = "4.0.1"
__version__ = "5.0.0"
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__ = "4.0.1"
__version__ = "5.0.0"

1 comment on commit dda302c

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Performance Alert ⚠️

Possible performance regression was detected for benchmark 'STAC FastAPI Benchmarks'.
Benchmark result of this commit is worse than the previous benchmark result exceeding threshold 1.30.

Benchmark suite Current: dda302c Previous: df4c7fa Ratio
Items With Model validation (1000) 12.555785590801056 iter/sec (stddev: 0.02100790260915866) 16.518109807256472 iter/sec (stddev: 0.01069636714937965) 1.32

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.