Skip to content

Commit ec0137e

Browse files
committed
release 3.1.0
1 parent dbc471e commit ec0137e

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

Diff for: CHANGELOG.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
3.1.0 (TBD)
1+
3.1.0 (2024-05-21)
22
-----------------
33
- Allow extra fields in Links (#144, @jonhealy1)
44
- Remove the deprecated `Context` extension (#138, @vincentsarago)

Diff for: README.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ For more comprehensive schema validation and robust extension support, use [pyst
1111
## Installation
1212

1313
```shell
14-
pip install stac-pydantic
14+
python -m pip install stac-pydantic
1515
```
1616

1717
For local development:
1818

1919
```shell
20-
pip install -e '.[dev,lint]'
20+
python -m pip install -e '.[dev,lint]'
2121
```
2222

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

3031
\* various beta releases, specs not fully implemented
3132

@@ -58,7 +59,7 @@ tox
5859
Run a single test case using the standard pytest convention:
5960

6061
```shell
61-
pytest -v tests/test_models.py::test_item_extensions
62+
python -m pytest -v tests/test_models.py::test_item_extensions
6263
```
6364

6465
## Usage

Diff for: stac_pydantic/version.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
1-
__version__ = "3.0.0"
1+
"""stac-pydantic and STAC spec versions."""
2+
3+
__version__ = "3.1.0"
4+
25
STAC_VERSION = "1.0.0"

0 commit comments

Comments
 (0)