diff --git a/README.md b/README.md index fc6661c..7f7c840 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ pip install acp-gh Or install the latest release directly from GitHub via `pip` or `pipx`: ```bash -pip install https://github.com/vbvictor/acp/releases/latest/download/acp_gh-1.1.0-py3-none-any.whl +pip install https://github.com/vbvictor/acp/releases/latest/download/acp_gh-1.2.0-py3-none-any.whl ``` ## Usage diff --git a/acp.py b/acp.py index 10033af..5a982e4 100755 --- a/acp.py +++ b/acp.py @@ -9,7 +9,7 @@ import subprocess import sys -__version__ = "1.1.0" +__version__ = "1.2.0" def get_bash_completion(): diff --git a/pyproject.toml b/pyproject.toml index c29411c..1dfc9fb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "acp-gh" -version = "1.1.0" +version = "1.2.0" description = "Automatic Commit Pusher (acp) - CLI tool to create GitHub PRs from staged changes in a single command" readme = "README.md" requires-python = ">=3.9"