Skip to content

Commit

Permalink
Merge pull request #111 from gauge-sh/v-0-5-2
Browse files Browse the repository at this point in the history
Bump to 0.5.2
  • Loading branch information
emdoyle authored Jun 13, 2024
2 parents 9d47e53 + 812e21c commit ac1e698
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tach"
version = "0.5.1"
version = "0.5.2"
edition = "2021"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion docs/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
2 changes: 1 addition & 1 deletion lsp/vscode/bundled/tool/lsp_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
)


Expand Down
2 changes: 1 addition & 1 deletion lsp/vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "tach"
version = "0.5.1"
version = "0.5.2"
authors = [
{ name="Caelean Barnes", email="[email protected]" },
{ name="Evan Doyle", email="[email protected]" },
Expand Down
2 changes: 1 addition & 1 deletion python/tach/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from __future__ import annotations

__version__ = "0.5.1"
__version__ = "0.5.2"

__all__ = ["__version__"]

0 comments on commit ac1e698

Please sign in to comment.