From 33e48eb2cb43448c1593fcb32d8ddf872912690a Mon Sep 17 00:00:00 2001 From: Boris Tvaroska Date: Tue, 10 Dec 2024 12:05:03 -0500 Subject: [PATCH] chore: bump version for release --- promptgit/__init__.py | 1 + pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/promptgit/__init__.py b/promptgit/__init__.py index e962cb7..652088b 100644 --- a/promptgit/__init__.py +++ b/promptgit/__init__.py @@ -19,4 +19,5 @@ from .repo import PromptRepo from .prompt import Prompt +__version__ = '0.2.5' __all__ = ['PromptRepo', 'FileTypes', 'Prompt'] \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 160bd5a..33e1b0c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "promptgit" -version = "0.2.0" +version = "0.2.5" description = "Managing prompts for LLM in Git repository" authors = ["Boris Tvaroska "] license = "Apache 2.0"