Skip to content

Commit

Permalink
prep for v1.2.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jonhealy1 committed Apr 26, 2022
1 parent 5e20c03 commit 84b8cc5
Show file tree
Hide file tree
Showing 3 changed files with 4 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"
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 84b8cc5

Please sign in to comment.