diff --git a/.bumpversion.toml b/.bumpversion.toml index 71e49e5..4804ba1 100644 --- a/.bumpversion.toml +++ b/.bumpversion.toml @@ -1,5 +1,5 @@ [tool.bumpversion] -current_version = "0.3.1" +current_version = "0.3.2" parse = "(?P\\d+)\\.(?P\\d+)\\.(?P\\d+)" serialize = ["{major}.{minor}.{patch}"] search = "{current_version}" diff --git a/.version b/.version index a2268e2..9fc80f9 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.3.1 \ No newline at end of file +0.3.2 \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 63944a4..a7cf6f7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "librarysystem" -version = "0.3.1" +version = "0.3.2" description = "A library system for loaning books and managing the users." readme = "README.md" requires-python = ">=3.12" diff --git a/src/__init__.py b/src/__init__.py index aaf1308..757aaba 100644 --- a/src/__init__.py +++ b/src/__init__.py @@ -5,7 +5,7 @@ from datetime import datetime import atexit import argparse -__version__ = "0.3.1" +__version__ = "0.3.2" __author__ = "Alexander Kirchner" __email__ = "alexander.kirchner@ph-freiburg.de" __contacts__ = "alexander.kirchner@ph-freiburg.de,christian.berger@ph-freiburg.de"