Skip to content

Commit

Permalink
Merge pull request #110 from stac-utils/v1.3.3
Browse files Browse the repository at this point in the history
v1.3.3
  • Loading branch information
jonhealy1 authored Nov 17, 2023
2 parents d75c105 + 1550778 commit e66e3a3
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 6 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ The format is (loosely) based on [Keep a Changelog](http://keepachangelog.com/)

## Unreleased

## [v1.3.3] - 2023-11-17
### Changed

- Development dependencies removed from runtime dependency list
([#109](https://github.com/stac-utils/stac-check/pull/109))

Expand Down Expand Up @@ -99,7 +99,8 @@ The format is (loosely) based on [Keep a Changelog](http://keepachangelog.com/)
- Validation from stac-validator 2.3.0
- Links and assets validation checks

[Unreleased]: https://github.com/stac-utils/stac-check/compare/v1.3.2...main
[Unreleased]: https://github.com/stac-utils/stac-check/compare/v1.3.3...main
[v1.3.3]: https://github.com/stac-utils/stac-check/compare/v1.3.2...v1.3.3
[v1.3.2]: https://github.com/stac-utils/stac-check/compare/v1.3.1...v1.3.2
[v1.3.1]: https://github.com/stac-utils/stac-check/compare/v1.3.0...v1.3.1
[v1.3.0]: https://github.com/stac-utils/stac-check/compare/v1.2.0...v1.3.0
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"""
from setuptools import setup, find_packages

__version__ = "1.3.2"
__version__ = "1.3.3"

with open("README.md", "r") as fh:
long_description = fh.read()
Expand Down
12 changes: 9 additions & 3 deletions tests/test_lint.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ def test_linter_bad_assets():
"https:/storage.googleapis.com/open-cogs/stac-examples/20201211_223832_CS2.jpg"
]
asset_request_errors = [
"https:/storage.googleapis.com/open-cogs/stac-examples/20201211_223832_CS2.jpg"
"https:/storage.googleapis.com/open-cogs/stac-examples/20201211_223832_CS2.jpg",
"http://remotedata.io/catalog/20201211_223832_CS2/extended-metadata.json",
"http://cool-sat.com/catalog/20201211_223832_CS2/20201211_223832_CS2.EPH"
]
assert linter.version == "1.0.0"
assert linter.valid_stac == True
Expand Down Expand Up @@ -54,9 +56,13 @@ def test_linter_bad_links_assets():
"https:/storage.googleapis.com/open-cogs/stac-examples/20201211_223832_CS2.jpg"
]
asset_request_errors = [
"https:/storage.googleapis.com/open-cogs/stac-examples/20201211_223832_CS2.jpg"
"https:/storage.googleapis.com/open-cogs/stac-examples/20201211_223832_CS2.jpg",
"http://remotedata.io/catalog/20201211_223832_CS2/extended-metadata.json",
"http://cool-sat.com/catalog/20201211_223832_CS2/20201211_223832_CS2.EPH"
]
link_format_errors = [
"http:/remotdata.io/catalog/20201211_223832_CS2/index.html",
]
link_format_errors = ["http:/remotdata.io/catalog/20201211_223832_CS2/index.html"]
link_request_errors = [
"http://catalog/collection.json",
"http:/remotdata.io/catalog/20201211_223832_CS2/index.html"
Expand Down

0 comments on commit e66e3a3

Please sign in to comment.