diff --git a/Cargo.lock b/Cargo.lock index f770bfe2..b74cc59c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1617,7 +1617,7 @@ dependencies = [ [[package]] name = "tach" -version = "0.16.2" +version = "0.16.3" dependencies = [ "cached", "criterion", diff --git a/Cargo.toml b/Cargo.toml index 88501b04..0f954f60 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tach" -version = "0.16.2" +version = "0.16.3" edition = "2021" [lib] diff --git a/docs/usage/commands.mdx b/docs/usage/commands.mdx index b18ceffd..bb7302bd 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.16.0 # change this to the latest tag! + rev: v0.16.3 # change this to the latest tag! hooks: - id: tach ``` diff --git a/pyproject.toml b/pyproject.toml index f61612b0..6e456b00 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "tach" -version = "0.16.2" +version = "0.16.3" 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 45304d32..ede75754 100644 --- a/python/tach/__init__.py +++ b/python/tach/__init__.py @@ -1,5 +1,5 @@ from __future__ import annotations -__version__ = "0.16.2" +__version__ = "0.16.3" __all__ = ["__version__"]