Skip to content

Commit

Permalink
add missing license
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentsarago committed May 20, 2024
1 parent 7b1cb44 commit 3a700e8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
- Fix STAC API Query Extension operator names from ne->neq, le->lte, and ge->gte (#120, @philvarner)
- Better **datetime** parsing/validation by using Pydantic native types and remove `ciso8601` requirement (#131, @eseglem)
- move datetime validation in `StacCommonMetadata` model definition (#131, @eseglem)
- add `license` in `StacCommonMetadata` model (#147, @vincentsarago)

3.0.0 (2024-01-25)
------------------
Expand Down
2 changes: 2 additions & 0 deletions stac_pydantic/shared.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,8 @@ class StacCommonMetadata(StacBaseModel):
# Date and Time Range
start_datetime: Optional[UtcDatetime] = None
end_datetime: Optional[UtcDatetime] = None
# Licensing
license: Optional[str] = None
# Provider
providers: Optional[List[Provider]] = None
# Instrument
Expand Down

0 comments on commit 3a700e8

Please sign in to comment.