Skip to content

Release v0.6.2 #413

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.6.2] - 2024-04-29

### Fixed

- Don't warn about old versions for extensions ([#365](https://github.com/stac-utils/stac-api-validator/pull/365))
- Convert intersects geometry to dictionary for POST ([#390](https://github.com/stac-utils/stac-api-validator/pull/390))

## [0.6.1] - 2023-04-24

Expand Down Expand Up @@ -158,7 +161,8 @@ Release is primarily to publish to Read the Docs as a version.

- Fixed issue with item-search validation relying on collections behavior

[unreleased]: https://github.com/stac-utils/stac-api-validator/compare/v0.6.1...main
[unreleased]: https://github.com/stac-utils/stac-api-validator/compare/v0.6.2...main
[0.6.2]: https://github.com/stac-utils/stac-api-validator/tree/v0.6.2
[0.6.1]: https://github.com/stac-utils/stac-api-validator/tree/v0.6.1
[0.6.0]: https://github.com/stac-utils/stac-api-validator/tree/v0.6.0
[0.5.0]: https://github.com/stac-utils/stac-api-validator/tree/v0.5.0
Expand Down
24 changes: 13 additions & 11 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,14 @@
[tool.poetry]
name = "stac-api-validator"
version = "0.6.1"
version = "0.6.2"
description = "STAC API Validator"
authors = ["Phil Varner <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://github.com/stac-utils/stac-api-validator"
repository = "https://github.com/stac-utils/stac-api-validator"
documentation = "https://stac-api-validator.readthedocs.io"
classifiers = [
"Development Status :: 4 - Beta",
]
classifiers = ["Development Status :: 4 - Beta"]

[tool.poetry.urls]
Changelog = "https://github.com/stac-utils/stac-api-validator/releases"
Expand All @@ -21,7 +19,7 @@ click = "^8.1.3"
certifi = "^2024.2.2"
pystac-client = "^0.7.5"
requests = "^2.31.0"
pystac = {extras = ["orjson"], version = "^1.8.3"}
pystac = { extras = ["orjson"], version = "^1.8.3" }
jsonschema = "^4.16.0"
PyYAML = "^6.0.1"
Shapely = ">=1.8.4"
Expand All @@ -33,10 +31,9 @@ deepdiff = "^6.2.3"
[tool.poetry.dev-dependencies]
Pygments = ">=2.10.0"
black = ">=22.8.0"
coverage = {extras = ["toml"], version = ">=6.2"}
coverage = { extras = ["toml"], version = ">=6.2" }
darglint = ">=1.8.1"
flake8 = ">=4.0.1"
#flake8-bandit = ">=2.1.2"
flake8-bugbear = ">=21.9.2"
flake8-docstrings = ">=1.6.0"
flake8-rst-docstrings = ">=0.2.5"
Expand All @@ -53,8 +50,8 @@ sphinx = ">=4.3.2"
sphinx-autobuild = ">=2021.3.14"
sphinx-click = ">=3.0.2"
typeguard = ">=2.13.3"
xdoctest = {extras = ["colors"], version = ">=0.15.10"}
myst-parser = {version = ">=0.16.1"}
xdoctest = { extras = ["colors"], version = ">=0.15.10" }
myst-parser = { version = ">=0.16.1" }

[tool.poetry.scripts]
stac-api-validator = "stac_api_validator.__main__:main"
Expand All @@ -69,7 +66,7 @@ source = ["stac_api_validator", "tests"]

[tool.coverage.report]
show_missing = true
fail_under = 10 # todo: get back to 85
fail_under = 10 # todo: get back to 85

[tool.isort]
profile = "black"
Expand All @@ -86,7 +83,12 @@ show_error_context = true
#ignore_missing_imports = true

[[tool.mypy.overrides]]
module = ["shapely.geometry", "stac_check.lint", "stac_validator.stac_validator", "deepdiff"]
module = [
"shapely.geometry",
"stac_check.lint",
"stac_validator.stac_validator",
"deepdiff",
]
ignore_missing_imports = true

[build-system]
Expand Down