From 893bf02d2273261b5dacd65f9f6a6c6d76d1d93a Mon Sep 17 00:00:00 2001 From: Ivan Uribe Date: Wed, 25 Feb 2026 10:00:42 -0500 Subject: [PATCH] feat: versions update --- pyproject.toml | 2 +- src/dev_tools_hooks/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 73a985b..ba8fa8e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "dev-tools-hooks" -version = "1.1.0" +version = "1.2.0" description = "Git hooks for development workflow - Conventional Commits, branch naming, and custom commands" readme = "README.md" license = {text = "MIT"} diff --git a/src/dev_tools_hooks/__init__.py b/src/dev_tools_hooks/__init__.py index bbc76f6..dd9074f 100644 --- a/src/dev_tools_hooks/__init__.py +++ b/src/dev_tools_hooks/__init__.py @@ -7,7 +7,7 @@ - Branch naming validation and custom commands (pre-push) """ -__version__ = "1.0.0" +__version__ = "1.2.0" __author__ = "Swapps" from .installer import install_hooks, uninstall_hooks