Skip to content

Commit 68d20aa

Browse files
Merge pull request #180 from stac-utils/patch/add-SearchDatetime-back
add SearchDatetime back in api.search
2 parents e512330 + 3d7371d commit 68d20aa

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11

22
## Unreleased
33

4+
## 3.3.1 (2025-06-01)
5+
6+
- Add back `SearchDatetime` in `stac_pydantic.api.search` to avoid breaking change
7+
48
## 3.3.0 (2025-05-29)
59

610
- Add validation for collection's spatial intervals

stac_pydantic/api/search.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616
from stac_pydantic.api.extensions.fields import FieldsExtension
1717
from stac_pydantic.api.extensions.query import Operator
1818
from stac_pydantic.api.extensions.sort import SortExtension
19+
20+
# TODO: remove in 4.0
21+
from stac_pydantic.shared import SearchDatetime # noqa
1922
from stac_pydantic.shared import (
2023
BBox,
2124
str_to_datetimes,

stac_pydantic/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""stac-pydantic and STAC spec versions."""
22

3-
__version__ = "3.3.0"
3+
__version__ = "3.3.1"
44

55
STAC_VERSION = "1.0.0"

0 commit comments

Comments
 (0)