From 6e6d7c22da44398b17ea895f7165d7a10b5bb888 Mon Sep 17 00:00:00 2001 From: Evan Doyle Date: Tue, 7 Jan 2025 17:04:53 -0800 Subject: [PATCH] Bump to 0.19.5 --- 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 effce402..99d490b3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1647,7 +1647,7 @@ dependencies = [ [[package]] name = "tach" -version = "0.19.4" +version = "0.19.5" dependencies = [ "cached", "criterion", diff --git a/Cargo.toml b/Cargo.toml index 350c8a34..eeaebb93 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tach" -version = "0.19.4" +version = "0.19.5" edition = "2021" [lib] diff --git a/docs/usage/commands.mdx b/docs/usage/commands.mdx index 94f5d027..dc020227 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.19.4 # change this to the latest tag! + rev: v0.19.5 # change this to the latest tag! hooks: - id: tach ``` diff --git a/pyproject.toml b/pyproject.toml index c1c74043..73af71db 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "tach" -version = "0.19.4" +version = "0.19.5" 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 3df9dbb7..6ea66add 100644 --- a/python/tach/__init__.py +++ b/python/tach/__init__.py @@ -1,5 +1,5 @@ from __future__ import annotations -__version__: str = "0.19.4" +__version__: str = "0.19.5" __all__ = ["__version__"]