Skip to content

Commit

Permalink
Merge pull request #153 from stac-utils/release/v3.1.0
Browse files Browse the repository at this point in the history
release 3.1.0
  • Loading branch information
vincentsarago authored May 21, 2024
2 parents dbc471e + ec0137e commit 1417932
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
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"

0 comments on commit 1417932

Please sign in to comment.