Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release 3.1.0 #153

Merged
merged 1 commit into from
May 21, 2024
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
2 changes: 1 addition & 1 deletion CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
3.1.0 (TBD)
3.1.0 (2024-05-21)
-----------------
- Allow extra fields in Links (#144, @jonhealy1)
- Remove the deprecated `Context` extension (#138, @vincentsarago)
Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ For more comprehensive schema validation and robust extension support, use [pyst
## Installation

```shell
pip install stac-pydantic
python -m pip install stac-pydantic
```

For local development:

```shell
pip install -e '.[dev,lint]'
python -m pip install -e '.[dev,lint]'
```

| stac-pydantic | STAC Version | STAC API Version | Pydantic Version |
Expand All @@ -26,6 +26,7 @@ pip install -e '.[dev,lint]'
| 1.3.x | 1.0.0-beta.2 | <1* | ^1.6 |
| 2.0.x | 1.0.0 | <1* | ^1.6 |
| 3.0.x | 1.0.0 | 1.0.0 | ^2.4 |
| 3.1.x | 1.0.0 | 1.0.0 | ^2.4 |

\* various beta releases, specs not fully implemented

Expand Down Expand Up @@ -58,7 +59,7 @@ tox
Run a single test case using the standard pytest convention:

```shell
pytest -v tests/test_models.py::test_item_extensions
python -m pytest -v tests/test_models.py::test_item_extensions
```

## Usage
Expand Down
5 changes: 4 additions & 1 deletion stac_pydantic/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
__version__ = "3.0.0"
"""stac-pydantic and STAC spec versions."""

__version__ = "3.1.0"

STAC_VERSION = "1.0.0"
Loading