From ad9635d5240d77d4966810508101f8ae55c62dc7 Mon Sep 17 00:00:00 2001 From: Tim Paine <3105306+timkpaine@users.noreply.github.com> Date: Mon, 2 Dec 2024 19:48:37 -0500 Subject: [PATCH 1/2] small fix for bump version config Signed-off-by: Tim Paine <3105306+timkpaine@users.noreply.github.com> --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index abf7c7e..5b52c08 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -62,7 +62,7 @@ test = [ Repository = "https://github.com/point72/csp-adapter-slack" Homepage = "https://github.com/point72/csp-adapter-slack" -[toolbumpversion] +[tool.bumpversion] current_version = "0.1.0" commit = true tag = false From 8fb1c989896a4e673af5443e901368e1e3b813a1 Mon Sep 17 00:00:00 2001 From: Tim Paine <3105306+timkpaine@users.noreply.github.com> Date: Mon, 2 Dec 2024 19:48:41 -0500 Subject: [PATCH 2/2] =?UTF-8?q?Bump=20version:=200.1.0=20=E2=86=92=200.2.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Tim Paine <3105306+timkpaine@users.noreply.github.com> --- csp_adapter_slack/__init__.py | 2 +- pyproject.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/csp_adapter_slack/__init__.py b/csp_adapter_slack/__init__.py index 118571f..27e3530 100644 --- a/csp_adapter_slack/__init__.py +++ b/csp_adapter_slack/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.1.0" +__version__ = "0.2.0" from .adapter import * from .adapter_config import * diff --git a/pyproject.toml b/pyproject.toml index 5b52c08..dc8f705 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ build-backend = "hatchling.build" [project] name = "csp_adapter_slack" description = "A csp adapter for slack" -version = "0.1.0" +version = "0.2.0" readme = "README.md" license = { file = "LICENSE" } requires-python = ">=3.8" @@ -63,7 +63,7 @@ Repository = "https://github.com/point72/csp-adapter-slack" Homepage = "https://github.com/point72/csp-adapter-slack" [tool.bumpversion] -current_version = "0.1.0" +current_version = "0.2.0" commit = true tag = false commit_args = "-s"