From b52b6ea43a1407f39938b2effe4453a9e7c0ccf3 Mon Sep 17 00:00:00 2001 From: Evan Doyle Date: Tue, 5 Nov 2024 17:33:35 -0800 Subject: [PATCH] Bump to 0.14.3 --- Cargo.lock | 2 +- Cargo.toml | 2 +- docs/usage/commands.mdx | 2 +- pyproject.toml | 2 +- python/tach/__init__.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 27979329..8dbce2bc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1587,7 +1587,7 @@ dependencies = [ [[package]] name = "tach" -version = "0.14.2" +version = "0.14.3" dependencies = [ "cached", "criterion", diff --git a/Cargo.toml b/Cargo.toml index 7797915d..d6b92c43 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tach" -version = "0.14.2" +version = "0.14.3" edition = "2021" [lib] diff --git a/docs/usage/commands.mdx b/docs/usage/commands.mdx index 5b11e723..a296dace 100644 --- a/docs/usage/commands.mdx +++ b/docs/usage/commands.mdx @@ -254,7 +254,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.14.2 # change this to the latest tag! + rev: v0.14.3 # change this to the latest tag! hooks: - id: tach ``` diff --git a/pyproject.toml b/pyproject.toml index fb2a7812..607e1741 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "tach" -version = "0.14.2" +version = "0.14.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 13f2f6e9..cf53087a 100644 --- a/python/tach/__init__.py +++ b/python/tach/__init__.py @@ -1,5 +1,5 @@ from __future__ import annotations -__version__ = "0.14.2" +__version__ = "0.14.3" __all__ = ["__version__"]