Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
brentyi committed Aug 26, 2024
1 parent e6a4cfb commit 8648be5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = "tyro"
authors = [
{name = "brentyi", email = "[email protected]"},
]
version = "0.8.8" # TODO: currently needs to be synchronized manually with __init__.py.
version = "0.8.9" # TODO: currently needs to be synchronized manually with __init__.py.
description = "Strongly typed, zero-effort CLI interfaces"
readme = "README.md"
license = { text="MIT" }
Expand Down
2 changes: 1 addition & 1 deletion src/tyro/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@


# TODO: this should be synchronized automatically with the pyproject.toml.
__version__ = "0.8.8"
__version__ = "0.8.9"
2 changes: 1 addition & 1 deletion src/tyro/_argparse_formatter.py
Original file line number Diff line number Diff line change
Expand Up @@ -620,7 +620,7 @@ def error(self, message: str) -> NoReturn:
message = "Unrecognized or misplaced options:\n\n"
for arg, prog in global_unrecognized_arg_and_prog:
message += f" {arg} (applied to [green]{prog}[/green])\n"
message += "\nNote that arguments are applied to the directly preceding subcommand, so ordering matters."
message += "\nArguments are applied to the directly preceding subcommand, so ordering matters."

# Show similar arguments for keyword options.
for unrecognized_argument in unrecognized_arguments:
Expand Down

0 comments on commit 8648be5

Please sign in to comment.