Bump version: 0.3.1 → 0.3.2

This commit is contained in:
2025-02-03 14:43:39 +01:00
parent 50534d46b1
commit 7140032109
4 changed files with 4 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
[tool.bumpversion]
current_version = "0.3.1"
current_version = "0.3.2"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
serialize = ["{major}.{minor}.{patch}"]
search = "{current_version}"

View File

@@ -1 +1 @@
0.3.1
0.3.2

View File

@@ -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"

View File

@@ -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"