Skip to content

Commit

Permalink
1.1.0 updates
Browse files Browse the repository at this point in the history
  • Loading branch information
jonhealy1 committed Jan 17, 2025
1 parent 0129cd1 commit e7132e3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion stac_check/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def intro_message(linter: Linter) -> None:

click.secho()

if linter.version == "1.0.0":
if linter.version == "1.1.0":
click.secho(linter.set_update_message(), fg="green")
else:
click.secho(linter.set_update_message(), fg="red")
Expand Down
6 changes: 3 additions & 3 deletions stac_check/lint.py
Original file line number Diff line number Diff line change
Expand Up @@ -322,10 +322,10 @@ def set_update_message(self) -> str:
Returns:
A string containing a message for users to update their STAC version.
"""
if self.version != "1.0.0":
return f"Please upgrade from version {self.version} to version 1.0.0!"
if self.version != "1.1.0":
return f"Please upgrade from version {self.version} to version 1.1.0!"
else:
return "Thanks for using STAC version 1.0.0!"
return "Thanks for using STAC version 1.1.0!"

def check_links_assets(
self, num_links: int, url_type: str, format_type: str
Expand Down

0 comments on commit e7132e3

Please sign in to comment.