diff --git a/.env-example b/.env-example index 70f91e8..338dc3b 100644 --- a/.env-example +++ b/.env-example @@ -1 +1 @@ -STAC_CHECK_CONFIG="stac-check.config.yml" \ No newline at end of file +STAC_CHECK_CONFIG="stac_check/stac-check.config.yml" \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 54f5c6d..35ab49b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ All notable changes to this project will be documented in this file. The format is (loosely) based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] - + +## [v1.2.0] - 2022-04-26 ### Added - Option to include a configuration file to ignore selected checks ### Changed diff --git a/setup.py b/setup.py index c3fb239..c1f7237 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ """ from setuptools import setup, find_packages -__version__ = "1.1.3" +__version__ = "1.2.0" with open("README.md", "r") as fh: long_description = fh.read() @@ -20,7 +20,7 @@ "requests>=2.19.1", "jsonschema>=3.1.2b0", "pytest", - "stac-validator>=2.4.2", + "stac-validator>=3.0.0", "PyYAML", "python-dotenv", ], diff --git a/stac_check/cli.py b/stac_check/cli.py index f3d9747..80202c9 100644 --- a/stac_check/cli.py +++ b/stac_check/cli.py @@ -1,6 +1,4 @@ import click -import json -import os from .lint import Linter def link_asset_message(link_list:list, type: str, format: str): @@ -115,7 +113,7 @@ def cli_message(linter): ) @click.command() @click.argument('file') -@click.version_option(version="0.1.4") +@click.version_option(version="1.2.0") def main(file, assets, links, recursive): linter = Linter(file, assets, links, recursive) cli_message(linter) \ No newline at end of file