From a11e80fb4d6af4b751f95000f03745524c200712 Mon Sep 17 00:00:00 2001 From: Jon Duckworth Date: Wed, 27 Jul 2022 10:30:58 -0400 Subject: [PATCH 1/2] Bump jsonschema minimum version to avoid RefResolutionError (#857) * Require jsonschema>=4.0.1 to avoid RefResolutionError * Require jsonschema>=4.0.1 to avoid RefResolutionError * Revert "Require jsonschema>=4.0.1 to avoid RefResolutionError" This reverts commit aa39edfee889f84408b86be65e51c59683b97c20. * Add CHANGELOG entry for #857 --- CHANGELOG.md | 2 ++ setup.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 63e650d7c..0cf45dcfc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,8 @@ ### Fixed +- Pins `jsonschema` to >=4.0.1 to avoid a `RefResolutionError` when validating some extensions ([#857](https://github.com/stac-utils/pystac/pull/857)) + ## [v1.6.0] diff --git a/setup.py b/setup.py index 53af1bb4c..66cc1a602 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ py_modules=[splitext(basename(path))[0] for path in glob("pystac/*.py")], python_requires=">=3.8", install_requires=["python-dateutil>=2.7.0"], - extras_require={"validation": ["jsonschema>=3.0"], "orjson": ["orjson>=3.5"]}, + extras_require={"validation": ["jsonschema>=4.0.1"], "orjson": ["orjson>=3.5"]}, license="Apache Software License 2.0", license_files=["LICENSE"], zip_safe=False, From 2e76a877b02eccf4d8e8ec6ad7b4aa7cf09aa268 Mon Sep 17 00:00:00 2001 From: Jon Duckworth Date: Wed, 27 Jul 2022 18:17:37 -0400 Subject: [PATCH 2/2] Bump package to v1.6.1 (#858) --- CHANGELOG.md | 8 ++++++-- pystac/version.py | 2 +- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0cf45dcfc..056a6dfdf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,8 +10,11 @@ ### Fixed -- Pins `jsonschema` to >=4.0.1 to avoid a `RefResolutionError` when validating some extensions ([#857](https://github.com/stac-utils/pystac/pull/857)) +## [v1.6.1] + +### Fixed +- Pins `jsonschema` to >=4.0.1 to avoid a `RefResolutionError` when validating some extensions ([#857](https://github.com/stac-utils/pystac/pull/857)) ## [v1.6.0] @@ -611,7 +614,8 @@ use `Band.create` Initial release. -[Unreleased]: +[Unreleased]: +[v1.6.1]: [v1.6.0]: [v1.5.0]: [v1.4.0]: diff --git a/pystac/version.py b/pystac/version.py index 6830dbc0e..a9022843b 100644 --- a/pystac/version.py +++ b/pystac/version.py @@ -1,7 +1,7 @@ import os from typing import Optional -__version__ = "1.6.0" +__version__ = "1.6.1" """Library version"""