Skip to content

Commit 71e7f1d

Browse files
authored
Merge pull request #87 from stac-utils/v1.3.0
V1.3.0
2 parents 0c0e9b3 + 993fca9 commit 71e7f1d

File tree

2 files changed

+22
-18
lines changed

2 files changed

+22
-18
lines changed

CHANGELOG.md

Lines changed: 20 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@ All notable changes to this project will be documented in this file.
44

55
The format is (loosely) based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).
66

7-
8-
## [Unreleased]
7+
## [Unreleased]
8+
9+
## [v1.3.0] - 2022-09-20
910
### Added
1011
- recursive mode lints assets https://github.com/stac-utils/stac-check/pull/84
1112
### Changed
@@ -18,27 +19,19 @@ The format is (loosely) based on [Keep a Changelog](http://keepachangelog.com/)
1819
- Option to include a configuration file to ignore selected checks
1920
### Changed
2021
- Change name from stac_check to stac-check in setup for cli
21-
22-
## [v1.1.3] - 2022-03-03
22+
### Fixed
2323
- Fix thumbnail size check
2424

2525
## [v1.1.2] - 2022-03-03
26-
- Fix self-link test
27-
28-
## [v1.1.1] - 2022-03-02
26+
### Changed
2927
- Make it easier to export linting messages
30-
31-
## [v1.0.3] - 2022-03-02
3228
- Set stac-validator version to 2.4.0
33-
34-
## [v1.0.2] - 2022-02-21
35-
- Loosen stac-validator version
29+
### Fixed
30+
- Fix self-link test
3631

3732
## [v1.0.1] - 2022-02-20
38-
- Update readme
39-
40-
## [v1.0.0] - 2022-02-20
4133
### Changed
34+
- Update readme
4235
- Reorganized code for version 1.0.0 release
4336

4437
## [v0.2.0] - 2022-02-02 - 2022-02-19
@@ -87,4 +80,15 @@ The format is (loosely) based on [Keep a Changelog](http://keepachangelog.com/)
8780
- Best practices check for too many links in object
8881
- Best practices check for summaries in collections
8982
- Validation from stac-validator 2.3.0
90-
- Links and assets validation checks
83+
- Links and assets validation checks
84+
85+
[Unreleased]: https://github.com/stac-utils/stac-check/compare/v1.3.0...main
86+
[v1.3.0]: https://github.com/stac-utils/stac-check/compare/v1.2.0...v1.3.0
87+
[v1.2.0]: https://github.com/stac-utils/stac-check/compare/v1.1.2...v1.2.0
88+
[v1.1.2]: https://github.com/stac-utils/stac-check/compare/v1.0.1...v1.1.2
89+
[v1.0.1]: https://github.com/stac-utils/stac-check/compare/v0.2.0...v1.0.1
90+
[v0.2.0]: https://github.com/stac-utils/stac-check/compare/v0.1.3...v0.2.0
91+
[v0.1.3]: https://github.com/stac-utils/stac-check/compare/v0.1.2...v0.1.3
92+
[v0.1.2]: https://github.com/stac-utils/stac-check/compare/v0.1.1...v0.1.2
93+
[v0.1.1]: https://github.com/stac-utils/stac-check/compare/v0.1.0...v0.1.1
94+
[v0.1.0]: https://github.com/stac-utils/stac-check/releases/tag/v0.1.0

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"""
33
from setuptools import setup, find_packages
44

5-
__version__ = "1.2.0"
5+
__version__ = "1.3.0"
66

77
with open("README.md", "r") as fh:
88
long_description = fh.read()
@@ -19,7 +19,7 @@
1919
"requests>=2.19.1",
2020
"jsonschema>=3.1.2b0",
2121
"pytest",
22-
"stac-validator>=3.0.0",
22+
"stac-validator==3.2.0",
2323
"PyYAML",
2424
"python-dotenv",
2525
"types-setuptools",

0 commit comments

Comments
 (0)