diff --git a/Cargo.lock b/Cargo.lock index 5eac8274..11793de6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1298,7 +1298,7 @@ dependencies = [ [[package]] name = "tach" -version = "0.20.0" +version = "0.21.0" dependencies = [ "cached", "crossbeam-channel", diff --git a/Cargo.toml b/Cargo.toml index b428931a..66efb991 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tach" -version = "0.20.0" +version = "0.21.0" edition = "2021" [lib] diff --git a/docs/usage/commands.mdx b/docs/usage/commands.mdx index b78aa56f..50c93c6d 100644 --- a/docs/usage/commands.mdx +++ b/docs/usage/commands.mdx @@ -255,7 +255,7 @@ If you use the [pre-commit framework](https://github.com/pre-commit/pre-commit), ```yaml repos: - repo: https://github.com/gauge-sh/tach-pre-commit - rev: v0.20.0 # change this to the latest tag! + rev: v0.21.0 # change this to the latest tag! hooks: - id: tach ``` diff --git a/pyproject.toml b/pyproject.toml index fdbba9f2..5045e1b1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "tach" -version = "0.20.0" +version = "0.21.0" authors = [ { name = "Caelean Barnes", email = "caeleanb@gmail.com" }, { name = "Evan Doyle", email = "evanmdoyle@gmail.com" }, diff --git a/python/tach/__init__.py b/python/tach/__init__.py index a748c8ff..b2393757 100644 --- a/python/tach/__init__.py +++ b/python/tach/__init__.py @@ -1,5 +1,5 @@ from __future__ import annotations -__version__: str = "0.20.0" +__version__: str = "0.21.0" __all__ = ["__version__"]