From 71aae3ed99dc8c1c4dc5888d5ffeab3f397b7f61 Mon Sep 17 00:00:00 2001 From: jonhealy1 Date: Fri, 17 Nov 2023 19:27:07 +0300 Subject: [PATCH] v3.3.2 --- CHANGELOG.md | 10 +++++++++- setup.py | 2 +- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f0798b8d..41843413 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,10 +6,17 @@ The format is (loosely) based on [Keep a Changelog](http://keepachangelog.com/) ## [Unreleased] +## [v3.3.2] - 2023-11-17 + ### Added - Docstrings https://github.com/stac-utils/stac-validator/pull/224 +### Changed + +- Development dependencies removed from runtime dependency list + ([#228](https://github.com/stac-utils/stac-check/pull/109)) + ## [v3.3.1] - 2022-12-16 ### Fixed @@ -183,7 +190,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]: +[Unreleased]: +[v3.3.2]: [v3.3.1]: [v3.3.0]: [v3.2.0]: diff --git a/setup.py b/setup.py index 2c8bfc3c..28db67c6 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup -__version__ = "3.3.1" +__version__ = "3.3.2" with open("README.md", "r") as fh: long_description = fh.read()