Skip to content

Commit

Permalink
Bump version to 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
brentyi committed Apr 4, 2024
1 parent eafae2e commit 6720c58
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/source/examples/04_additional/12_aliases.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.. Comment: this file is automatically generated by `update_example_docs.py`.
It should not be modified manually.
Argument aliases
Argument Aliases
==========================================


Expand Down
2 changes: 1 addition & 1 deletion docs/source/examples/04_additional/13_type_statement.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.. Comment: this file is automatically generated by `update_example_docs.py`.
It should not be modified manually.
Type aliases (Python 3.12+)
Type Aliases (Python 3.12+)
==========================================


Expand Down
2 changes: 1 addition & 1 deletion examples/04_additional/12_aliases.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Argument aliases
"""Argument Aliases
:func:`tyro.conf.arg()` can be used to attach aliases to arguments.
Expand Down
2 changes: 1 addition & 1 deletion examples/04_additional/13_type_statement.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# mypy: ignore-errors
#
# PEP 695 isn't yet supported in mypy. (April 4, 2024)
"""Type aliases (Python 3.12+)
"""Type Aliases (Python 3.12+)
In Python 3.12, the `type` statement is introduced to create type aliases.
Expand Down
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.7.3" # TODO: currently needs to be synchronized manually with __init__.py.
version = "0.8.0" # 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.7.3"
__version__ = "0.8.0"

0 comments on commit 6720c58

Please sign in to comment.