From 6afc0199411e98b2d81066234ac2cd05dad64227 Mon Sep 17 00:00:00 2001 From: jonhealy1 Date: Tue, 29 Jul 2025 00:45:04 +0300 Subject: [PATCH] v1.11.1 --- CHANGELOG.md | 5 ++++- docs/conf.py | 2 +- setup.py | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a66f5d0..205617a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ The format is (loosely) based on [Keep a Changelog](http://keepachangelog.com/) ## Unreleased +## [v1.11.1] - 2025-07-29 + ### Updated - Updated stac-validator dependency to v3.10.1 ([#140](https://github.com/stac-utils/stac-check/pull/140)) @@ -303,7 +305,8 @@ The format is (loosely) based on [Keep a Changelog](http://keepachangelog.com/) - Validation from stac-validator 2.3.0 - Links and assets validation checks -[Unreleased]: https://github.com/stac-utils/stac-check/compare/v1.11.0...main +[Unreleased]: https://github.com/stac-utils/stac-check/compare/v1.11.1...main +[v1.11.1]: https://github.com/stac-utils/stac-check/compare/v1.11.0...v1.11.1 [v1.11.0]: https://github.com/stac-utils/stac-check/compare/v1.10.1...v1.11.0 [v1.10.1]: https://github.com/stac-utils/stac-check/compare/v1.10.0...v1.10.1 [v1.10.0]: https://github.com/stac-utils/stac-check/compare/v1.9.1...v1.10.0 diff --git a/docs/conf.py b/docs/conf.py index c878c29..94f8b46 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -13,7 +13,7 @@ project = "stac-check" copyright = "2025, Jonathan Healy" author = "Jonathan Healy" -release = "1.11.0" +release = "1.11.1" # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/setup.py b/setup.py index f0a7a5f..2fb3db2 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import find_packages, setup -__version__ = "1.11.0" +__version__ = "1.11.1" with open("README.md", "r") as fh: long_description = fh.read()