From 6720c58c163b04ee5c57b58fcf73cc3ce8c2b820 Mon Sep 17 00:00:00 2001 From: Brent Yi Date: Thu, 4 Apr 2024 14:52:39 -0700 Subject: [PATCH] Bump version to 0.8.0 --- docs/source/examples/04_additional/12_aliases.rst | 2 +- docs/source/examples/04_additional/13_type_statement.rst | 2 +- examples/04_additional/12_aliases.py | 2 +- examples/04_additional/13_type_statement.py | 2 +- pyproject.toml | 2 +- src/tyro/__init__.py | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/source/examples/04_additional/12_aliases.rst b/docs/source/examples/04_additional/12_aliases.rst index 7505b954..f6368e5c 100644 --- a/docs/source/examples/04_additional/12_aliases.rst +++ b/docs/source/examples/04_additional/12_aliases.rst @@ -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 ========================================== diff --git a/docs/source/examples/04_additional/13_type_statement.rst b/docs/source/examples/04_additional/13_type_statement.rst index 6f4890fe..7406e082 100644 --- a/docs/source/examples/04_additional/13_type_statement.rst +++ b/docs/source/examples/04_additional/13_type_statement.rst @@ -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+) ========================================== diff --git a/examples/04_additional/12_aliases.py b/examples/04_additional/12_aliases.py index 212cffaa..5ee33de9 100644 --- a/examples/04_additional/12_aliases.py +++ b/examples/04_additional/12_aliases.py @@ -1,4 +1,4 @@ -"""Argument aliases +"""Argument Aliases :func:`tyro.conf.arg()` can be used to attach aliases to arguments. diff --git a/examples/04_additional/13_type_statement.py b/examples/04_additional/13_type_statement.py index 5f721e8a..a892bf73 100644 --- a/examples/04_additional/13_type_statement.py +++ b/examples/04_additional/13_type_statement.py @@ -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. diff --git a/pyproject.toml b/pyproject.toml index e4b6c0d3..6647d5b8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ name = "tyro" authors = [ {name = "brentyi", email = "brentyi@berkeley.edu"}, ] -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" } diff --git a/src/tyro/__init__.py b/src/tyro/__init__.py index e9ff7017..b262e3e3 100644 --- a/src/tyro/__init__.py +++ b/src/tyro/__init__.py @@ -14,4 +14,4 @@ # TODO: this should be synchronized automatically with the pyproject.toml. -__version__ = "0.7.3" +__version__ = "0.8.0"