Skip to content

Commit

Permalink
Merge branch 'main' into 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
duckontheweb committed Jul 28, 2022
2 parents 32f4e03 + 2e76a87 commit 579c071
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@

### Fixed

## [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]

Expand Down Expand Up @@ -609,7 +614,8 @@ use `Band.create`

Initial release.

[Unreleased]: <https://github.com/stac-utils/pystac/compare/v1.6.0..main>
[Unreleased]: <https://github.com/stac-utils/pystac/compare/v1.6.1..main>
[v1.6.1]: <https://github.com/stac-utils/pystac/compare/v1.6.0..v1.6.1>
[v1.6.0]: <https://github.com/stac-utils/pystac/compare/v1.5.0..v1.6.0>
[v1.5.0]: <https://github.com/stac-utils/pystac/compare/v1.4.0..v1.5.0>
[v1.4.0]: <https://github.com/stac-utils/pystac/compare/v1.3.0..v1.4.0>
Expand Down
2 changes: 1 addition & 1 deletion pystac/version.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import os
from typing import Optional

__version__ = "1.6.0"
__version__ = "1.6.1"
"""Library version"""


Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 579c071

Please sign in to comment.