Skip to content

Commit 9d47607

Browse files
authored
release: v0.6.2 (#413)
Pardon the TOML formatting changes
1 parent 24dd3f2 commit 9d47607

File tree

2 files changed

+18
-12
lines changed

2 files changed

+18
-12
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.6.2] - 2024-04-29
11+
1012
### Fixed
1113

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

1417
## [0.6.1] - 2023-04-24
1518

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

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

161-
[unreleased]: https://github.com/stac-utils/stac-api-validator/compare/v0.6.1...main
164+
[unreleased]: https://github.com/stac-utils/stac-api-validator/compare/v0.6.2...main
165+
[0.6.2]: https://github.com/stac-utils/stac-api-validator/tree/v0.6.2
162166
[0.6.1]: https://github.com/stac-utils/stac-api-validator/tree/v0.6.1
163167
[0.6.0]: https://github.com/stac-utils/stac-api-validator/tree/v0.6.0
164168
[0.5.0]: https://github.com/stac-utils/stac-api-validator/tree/v0.5.0

pyproject.toml

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
11
[tool.poetry]
22
name = "stac-api-validator"
3-
version = "0.6.1"
3+
version = "0.6.2"
44
description = "STAC API Validator"
55
authors = ["Phil Varner <[email protected]>"]
66
license = "Apache-2.0"
77
readme = "README.md"
88
homepage = "https://github.com/stac-utils/stac-api-validator"
99
repository = "https://github.com/stac-utils/stac-api-validator"
1010
documentation = "https://stac-api-validator.readthedocs.io"
11-
classifiers = [
12-
"Development Status :: 4 - Beta",
13-
]
11+
classifiers = ["Development Status :: 4 - Beta"]
1412

1513
[tool.poetry.urls]
1614
Changelog = "https://github.com/stac-utils/stac-api-validator/releases"
@@ -21,7 +19,7 @@ click = "^8.1.3"
2119
certifi = "^2024.2.2"
2220
pystac-client = "^0.7.5"
2321
requests = "^2.31.0"
24-
pystac = {extras = ["orjson"], version = "^1.8.3"}
22+
pystac = { extras = ["orjson"], version = "^1.8.3" }
2523
jsonschema = "^4.16.0"
2624
PyYAML = "^6.0.1"
2725
Shapely = ">=1.8.4"
@@ -33,10 +31,9 @@ deepdiff = "^6.2.3"
3331
[tool.poetry.dev-dependencies]
3432
Pygments = ">=2.10.0"
3533
black = ">=22.8.0"
36-
coverage = {extras = ["toml"], version = ">=6.2"}
34+
coverage = { extras = ["toml"], version = ">=6.2" }
3735
darglint = ">=1.8.1"
3836
flake8 = ">=4.0.1"
39-
#flake8-bandit = ">=2.1.2"
4037
flake8-bugbear = ">=21.9.2"
4138
flake8-docstrings = ">=1.6.0"
4239
flake8-rst-docstrings = ">=0.2.5"
@@ -53,8 +50,8 @@ sphinx = ">=4.3.2"
5350
sphinx-autobuild = ">=2021.3.14"
5451
sphinx-click = ">=3.0.2"
5552
typeguard = ">=2.13.3"
56-
xdoctest = {extras = ["colors"], version = ">=0.15.10"}
57-
myst-parser = {version = ">=0.16.1"}
53+
xdoctest = { extras = ["colors"], version = ">=0.15.10" }
54+
myst-parser = { version = ">=0.16.1" }
5855

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

7067
[tool.coverage.report]
7168
show_missing = true
72-
fail_under = 10 # todo: get back to 85
69+
fail_under = 10 # todo: get back to 85
7370

7471
[tool.isort]
7572
profile = "black"
@@ -86,7 +83,12 @@ show_error_context = true
8683
#ignore_missing_imports = true
8784

8885
[[tool.mypy.overrides]]
89-
module = ["shapely.geometry", "stac_check.lint", "stac_validator.stac_validator", "deepdiff"]
86+
module = [
87+
"shapely.geometry",
88+
"stac_check.lint",
89+
"stac_validator.stac_validator",
90+
"deepdiff",
91+
]
9092
ignore_missing_imports = true
9193

9294
[build-system]

0 commit comments

Comments
 (0)