diff --git a/Cargo.lock b/Cargo.lock index 6d0f8ff7..1712f070 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1097,7 +1097,7 @@ dependencies = [ [[package]] name = "tach" -version = "0.5.1" +version = "0.5.2" dependencies = [ "criterion", "once_cell", diff --git a/Cargo.toml b/Cargo.toml index 15bff1dc..e8f56c3a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tach" -version = "0.5.1" +version = "0.5.2" edition = "2021" [lib] diff --git a/docs/usage.md b/docs/usage.md index 4c76e0c8..4e2d608b 100644 --- a/docs/usage.md +++ b/docs/usage.md @@ -127,7 +127,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.5.1 # change this to the latest tag! + rev: v0.5.2 # change this to the latest tag! hooks: - id: tach # args: ["--root=backend_root"] diff --git a/lsp/vscode/bundled/tool/lsp_server.py b/lsp/vscode/bundled/tool/lsp_server.py index 2eeb60ec..e4743266 100644 --- a/lsp/vscode/bundled/tool/lsp_server.py +++ b/lsp/vscode/bundled/tool/lsp_server.py @@ -47,7 +47,7 @@ def update_sys_path(path_to_add: str, strategy: str) -> None: MAX_WORKERS = 5 # TODO: Centralize version LSP_SERVER = server.LanguageServer( - name="Tach", version="0.5.1", max_workers=MAX_WORKERS + name="Tach", version="0.5.2", max_workers=MAX_WORKERS ) diff --git a/lsp/vscode/package.json b/lsp/vscode/package.json index 2983b74f..4d71e2ed 100644 --- a/lsp/vscode/package.json +++ b/lsp/vscode/package.json @@ -2,7 +2,7 @@ "name": "tach", "displayName": "Tach", "description": "Linting support for python files using `tach`.", - "version": "0.5.1", + "version": "0.5.2", "preview": true, "serverInfo": { "name": "Tach", diff --git a/pyproject.toml b/pyproject.toml index afd87ec2..9c60330b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "tach" -version = "0.5.1" +version = "0.5.2" 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 c378b1c9..4c6ca1ad 100644 --- a/python/tach/__init__.py +++ b/python/tach/__init__.py @@ -1,5 +1,5 @@ from __future__ import annotations -__version__ = "0.5.1" +__version__ = "0.5.2" __all__ = ["__version__"]