Skip to content

Commit dd29bad

Browse files
authored
update for v3.6.0 release (#244)
1 parent 57f8191 commit dd29bad

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

CHANGELOG.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ The format is (loosely) based on [Keep a Changelog](http://keepachangelog.com/)
88

99
### Added
1010

11+
### Changed
12+
13+
## [v3.6.0] - 2025-03-25
14+
15+
### Added
16+
1117
- If a validation error occurs in recursive mode only show the invalid items unless verbose mode is on. [#243](https://github.com/stac-utils/stac-validator/pull/243)
1218
- Added ability to validate extensions of Collections [#243](https://github.com/stac-utils/stac-validator/pull/243)
1319
- Improve error reporting through use of [best_match](https://python-jsonschema.readthedocs.io/en/stable/errors/#best-match-and-relevance) [#243](https://github.com/stac-utils/stac-validator/pull/243)
@@ -226,7 +232,8 @@ The format is (loosely) based on [Keep a Changelog](http://keepachangelog.com/)
226232
- With the newest version - 1.0.0-beta.2 - items will run through jsonchema validation before the PySTAC validation. The reason for this is that jsonschema will give more informative error messages. This should be addressed better in the future. This is not the case with the --recursive option as time can be a concern here with larger collections.
227233
- Logging. Various additions were made here depending on the options selected. This was done to help assist people to update their STAC collections.
228234

229-
[Unreleased]: https://github.com/sparkgeo/stac-validator/compare/v3.5.0..main
235+
[Unreleased]: https://github.com/sparkgeo/stac-validator/compare/v3.6.0..main
236+
[v3.6.0]: https://github.com/sparkgeo/stac-validator/compare/v3.5.0..v3.6.0
230237
[v3.5.0]: https://github.com/sparkgeo/stac-validator/compare/v3.4.0..v3.5.0
231238
[v3.4.0]: https://github.com/sparkgeo/stac-validator/compare/v3.3.2..v3.4.0
232239
[v3.3.2]: https://github.com/sparkgeo/stac-validator/compare/v3.3.1..v3.3.2

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from setuptools import setup
44

5-
__version__ = "3.5.0"
5+
__version__ = "3.6.0"
66

77
with open("README.md", "r") as fh:
88
long_description = fh.read()

0 commit comments

Comments
 (0)