Skip to content

Commit 579c071

Browse files
committed
Merge branch 'main' into 1.0
2 parents 32f4e03 + 2e76a87 commit 579c071

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@
1010

1111
### Fixed
1212

13+
## [v1.6.1]
14+
15+
### Fixed
16+
17+
- Pins `jsonschema` to >=4.0.1 to avoid a `RefResolutionError` when validating some extensions ([#857](https://github.com/stac-utils/pystac/pull/857))
1318

1419
## [v1.6.0]
1520

@@ -609,7 +614,8 @@ use `Band.create`
609614

610615
Initial release.
611616

612-
[Unreleased]: <https://github.com/stac-utils/pystac/compare/v1.6.0..main>
617+
[Unreleased]: <https://github.com/stac-utils/pystac/compare/v1.6.1..main>
618+
[v1.6.1]: <https://github.com/stac-utils/pystac/compare/v1.6.0..v1.6.1>
613619
[v1.6.0]: <https://github.com/stac-utils/pystac/compare/v1.5.0..v1.6.0>
614620
[v1.5.0]: <https://github.com/stac-utils/pystac/compare/v1.4.0..v1.5.0>
615621
[v1.4.0]: <https://github.com/stac-utils/pystac/compare/v1.3.0..v1.4.0>

pystac/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import os
22
from typing import Optional
33

4-
__version__ = "1.6.0"
4+
__version__ = "1.6.1"
55
"""Library version"""
66

77

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
py_modules=[splitext(basename(path))[0] for path in glob("pystac/*.py")],
2525
python_requires=">=3.8",
2626
install_requires=["python-dateutil>=2.7.0"],
27-
extras_require={"validation": ["jsonschema>=3.0"], "orjson": ["orjson>=3.5"]},
27+
extras_require={"validation": ["jsonschema>=4.0.1"], "orjson": ["orjson>=3.5"]},
2828
license="Apache Software License 2.0",
2929
license_files=["LICENSE"],
3030
zip_safe=False,

0 commit comments

Comments
 (0)