Skip to content

Commit

Permalink
Merge pull request #80 from stac-utils/v1.2.0
Browse files Browse the repository at this point in the history
prep for v1.2.0 release
  • Loading branch information
jonhealy1 authored Apr 26, 2022
2 parents 5e20c03 + 840173c commit 7fd270e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .env-example
Original file line number Diff line number Diff line change
@@ -1 +1 @@
STAC_CHECK_CONFIG="stac-check.config.yml"
STAC_CHECK_CONFIG="stac_check/stac-check.config.yml"
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand All @@ -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",
],
Expand Down
4 changes: 1 addition & 3 deletions stac_check/cli.py
Original file line number Diff line number Diff line change
@@ -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):
Expand Down Expand Up @@ -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)

0 comments on commit 7fd270e

Please sign in to comment.