diff --git a/README.md b/README.md index 875b5fa..fc8b3b2 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ To compile your requirements via pre-commit, add the following to your `.pre-com ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.4.29 + rev: 0.4.30 hooks: # Run the pip compile - id: pip-compile @@ -31,7 +31,7 @@ To compile alternative files, modify the `args` and `files`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.4.29 + rev: 0.4.30 hooks: # Run the pip compile - id: pip-compile @@ -44,7 +44,7 @@ To run the hook over multiple files at the same time: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.4.29 + rev: 0.4.30 hooks: # Run the pip compile - id: pip-compile @@ -61,7 +61,7 @@ To ensure the lockfile is up-to-date: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.4.29 + rev: 0.4.30 hooks: # Update the uv lockfile - id: uv-lock @@ -72,7 +72,7 @@ To autoexport `uv.lock` to `requirements.txt`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.4.29 + rev: 0.4.30 hooks: - id: uv-export ``` @@ -82,7 +82,7 @@ To export to an alternative file, modify the `args`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.4.29 + rev: 0.4.30 hooks: - id: uv-export args: ["--frozen", "--output-file=requirements-custom.txt"] diff --git a/pyproject.toml b/pyproject.toml index 317e38e..d0006c5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "uv-pre-commit" version = "0.0.0" dependencies = [ - "uv==0.4.29", + "uv==0.4.30", ] [project.optional-dependencies]