From 9ce1153a16ae33847be0c6d192d0445c968e82c1 Mon Sep 17 00:00:00 2001 From: jonhealy1 Date: Fri, 10 Jan 2025 10:37:20 +0800 Subject: [PATCH] 3.5.0 release --- CHANGELOG.md | 7 ++++++- setup.py | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 875f9a2..954eae5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,10 @@ The format is (loosely) based on [Keep a Changelog](http://keepachangelog.com/) ### Added +## [v3.5.0] - 2025-01-10 + +### Added + - Added publish.yml to automatically publish new releases to PyPI [#236](https://github.com/stac-utils/stac-validator/pull/236) - Configure whether to open URLs when validating assets [#238](https://github.com/stac-utils/stac-validator/pull/238) - Allow to provide HTTP headers [#239](https://github.com/stac-utils/stac-validator/pull/239) @@ -217,7 +221,8 @@ The format is (loosely) based on [Keep a Changelog](http://keepachangelog.com/) - 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. - Logging. Various additions were made here depending on the options selected. This was done to help assist people to update their STAC collections. -[Unreleased]: https://github.com/sparkgeo/stac-validator/compare/v3.4.0..main +[Unreleased]: https://github.com/sparkgeo/stac-validator/compare/v3.5.0..main +[v3.5.0]: https://github.com/sparkgeo/stac-validator/compare/v3.4.0..v3.5.0 [v3.4.0]: https://github.com/sparkgeo/stac-validator/compare/v3.3.2..v3.4.0 [v3.3.2]: https://github.com/sparkgeo/stac-validator/compare/v3.3.1..v3.3.2 [v3.3.1]: https://github.com/sparkgeo/stac-validator/compare/v3.3.0..v3.3.1 diff --git a/setup.py b/setup.py index 84d4ba9..dd623ff 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup -__version__ = "3.4.0" +__version__ = "3.5.0" with open("README.md", "r") as fh: long_description = fh.read()