Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@

## Unreleased

## 3.3.1 (2025-06-01)

- Add back `SearchDatetime` in `stac_pydantic.api.search` to avoid breaking change

## 3.3.0 (2025-05-29)

- Add validation for collection's spatial intervals
Expand Down
3 changes: 3 additions & 0 deletions stac_pydantic/api/search.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@
from stac_pydantic.api.extensions.fields import FieldsExtension
from stac_pydantic.api.extensions.query import Operator
from stac_pydantic.api.extensions.sort import SortExtension

# TODO: remove in 4.0
from stac_pydantic.shared import SearchDatetime # noqa
from stac_pydantic.shared import (
BBox,
str_to_datetimes,
Expand Down
2 changes: 1 addition & 1 deletion stac_pydantic/version.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""stac-pydantic and STAC spec versions."""

__version__ = "3.3.0"
__version__ = "3.3.1"

STAC_VERSION = "1.0.0"