From 3275f3c48393eb1433bccbd1d62c4657570a33ea Mon Sep 17 00:00:00 2001 From: flashdagger Date: Thu, 25 Jul 2024 12:32:21 +0200 Subject: [PATCH] bump release version to 0.3.0 Signed-off-by: flashdagger --- HISTORY.rst | 2 +- pyproject.toml | 4 ++-- zammadoo/__init__.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 5dfe010..8a7326c 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -4,7 +4,7 @@ History .. py:module:: zammadoo -0.3.0 (tbd) +0.3.0 (2024-07-25) ----------- * **breaking changes** diff --git a/pyproject.toml b/pyproject.toml index b7f3340..92d8228 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "zammadoo" -version = "0.3.0.dev0" +version = "0.3.0" description = "an object-oriented REST API client for zammad" authors = ["flashdagger"] license = "MIT" @@ -39,7 +39,7 @@ build-backend = "poetry.core.masonry.api" [bumpver] -current_version = "0.3.0.dev0" +current_version = "0.3.0" version_pattern = "MAJOR.MINOR.PATCH[.PYTAGNUM]" [bumpver.file_patterns] diff --git a/zammadoo/__init__.py b/zammadoo/__init__.py index c8cc8a8..a157a24 100644 --- a/zammadoo/__init__.py +++ b/zammadoo/__init__.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- coding: UTF-8 -*- -__version__ = "0.3.0.dev0" +__version__ = "0.3.0" from .client import LOG, APIException, Client