From 1a8a52b0ea4543d40502fe51b76fb1f1019be104 Mon Sep 17 00:00:00 2001 From: Victor Baranov Date: Thu, 19 Feb 2026 20:01:18 +0300 Subject: [PATCH] chore: bump version to 1.2.0 --- README.md | 2 +- acp.py | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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"