Skip to content

Commit 9ca3459

Browse files
authored
Merge pull request #107 from stac-utils/bugfix-release
Bugfix release
2 parents 9f5387c + c7d2ac2 commit 9ca3459

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

CHANGELOG.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,14 @@ All notable changes to this project will be documented in this file.
55
The format is (loosely) based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).
66

77
## Unreleased
8+
9+
## [v1.3.2] - 2023-03-23
810
## Added
911
- Ability to lint dictionaries https://github.com/stac-utils/stac-check/pull/94
1012
- Docstrings and pdoc api documents
1113
## Fixed
1214
- Fixed the check_catalog_file_name() method to only work on static catalogs https://github.com/stac-utils/stac-check/pull/94
15+
- Jsonschema version to use a released version https://github.com/stac-utils/stac-check/pull/105
1316

1417
## [v1.3.1] - 2022-10-05
1518
## Changed
@@ -91,7 +94,8 @@ The format is (loosely) based on [Keep a Changelog](http://keepachangelog.com/)
9194
- Validation from stac-validator 2.3.0
9295
- Links and assets validation checks
9396

94-
[Unreleased]: https://github.com/stac-utils/stac-check/compare/v1.3.0...main
97+
[Unreleased]: https://github.com/stac-utils/stac-check/compare/v1.3.2...main
98+
[v1.3.2]: https://github.com/stac-utils/stac-check/compare/v1.3.1...v1.3.2
9599
[v1.3.1]: https://github.com/stac-utils/stac-check/compare/v1.3.0...v1.3.1
96100
[v1.3.0]: https://github.com/stac-utils/stac-check/compare/v1.2.0...v1.3.0
97101
[v1.2.0]: https://github.com/stac-utils/stac-check/compare/v1.1.2...v1.2.0

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"""
33
from setuptools import setup, find_packages
44

5-
__version__ = "1.3.1"
5+
__version__ = "1.3.2"
66

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

0 commit comments

Comments
 (0)