File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,12 @@ The format is (loosely) based on [Keep a Changelog](http://keepachangelog.com/)
66
77## Unreleased
88
9+ ## [ v1.10.1] - 2025-06-21
10+
11+ ### Fixed
12+
13+ - Fixed issue where pages parameter was being added to the wrong Linter ([ #137 ] ( https://github.com/stac-utils/stac-check/pull/137 ) )
14+
915## [ v1.10.0] - 2025-06-20
1016
1117### Added
@@ -279,7 +285,8 @@ The format is (loosely) based on [Keep a Changelog](http://keepachangelog.com/)
279285- Validation from stac-validator 2.3.0
280286- Links and assets validation checks
281287
282- [ Unreleased ] : https://github.com/stac-utils/stac-check/compare/v1.10.0...main
288+ [ Unreleased ] : https://github.com/stac-utils/stac-check/compare/v1.10.1...main
289+ [ v1.10.1 ] : https://github.com/stac-utils/stac-check/compare/v1.10.0...v1.10.1
283290[ v1.10.0 ] : https://github.com/stac-utils/stac-check/compare/v1.9.1...v1.10.0
284291[ v1.9.1 ] : https://github.com/stac-utils/stac-check/compare/v1.9.0...v1.9.1
285292[ v1.9.0 ] : https://github.com/stac-utils/stac-check/compare/v1.8.0...v1.9.0
Original file line number Diff line number Diff line change 33
44from setuptools import find_packages , setup
55
6- __version__ = "1.10.0 "
6+ __version__ = "1.10.1 "
77
88with open ("README.md" , "r" ) as fh :
99 long_description = fh .read ()
Original file line number Diff line number Diff line change @@ -111,7 +111,6 @@ def main(
111111 headers = dict (header ),
112112 pydantic = pydantic ,
113113 verbose = verbose ,
114- pages = pages ,
115114 )
116115 intro_message (linter )
117116 # If recursive validation is enabled, use recursive_message
You can’t perform that action at this time.
0 commit comments