diff --git a/CHANGELOG.md b/CHANGELOG.md index dc02721..1d99ed6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,8 +6,8 @@ The format is (loosely) based on [Keep a Changelog](http://keepachangelog.com/) ## Unreleased +## [v1.3.3] - 2023-11-17 ### Changed - - Development dependencies removed from runtime dependency list ([#109](https://github.com/stac-utils/stac-check/pull/109)) @@ -99,7 +99,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.3.2...main +[Unreleased]: https://github.com/stac-utils/stac-check/compare/v1.3.3...main +[v1.3.3]: https://github.com/stac-utils/stac-check/compare/v1.3.2...v1.3.3 [v1.3.2]: https://github.com/stac-utils/stac-check/compare/v1.3.1...v1.3.2 [v1.3.1]: https://github.com/stac-utils/stac-check/compare/v1.3.0...v1.3.1 [v1.3.0]: https://github.com/stac-utils/stac-check/compare/v1.2.0...v1.3.0 diff --git a/setup.py b/setup.py index 32f34e6..94779b5 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ """ from setuptools import setup, find_packages -__version__ = "1.3.2" +__version__ = "1.3.3" with open("README.md", "r") as fh: long_description = fh.read()