diff --git a/HISTORY.rst b/HISTORY.rst index 63d4c9a..9973d7f 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -6,6 +6,21 @@ History .. towncrier release notes start +3.3.2 (2023-09-26) +================== + +Features +-------- + +- Migrate to bump-my-version (#237) + + +Bugfixes +-------- + +- Fix ruff linting (#232) + + 3.3.1 (2023-07-09) ================== diff --git a/app_helper/__init__.py b/app_helper/__init__.py index f226189..fe9311c 100644 --- a/app_helper/__init__.py +++ b/app_helper/__init__.py @@ -1,4 +1,4 @@ -__version__ = "3.3.2.dev0" +__version__ = "3.3.2" __author__ = "Iacopo Spalletti " __all__ = ["runner"] diff --git a/changes/232.bugfix b/changes/232.bugfix deleted file mode 100644 index c1a37d4..0000000 --- a/changes/232.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix ruff linting diff --git a/changes/237.feature b/changes/237.feature deleted file mode 100644 index 7a2f2f7..0000000 --- a/changes/237.feature +++ /dev/null @@ -1 +0,0 @@ -Migrate to bump-my-version diff --git a/pyproject.toml b/pyproject.toml index e939490..5734ded 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -54,7 +54,7 @@ commit = true message = "Release {new_version}" commit_args = "--no-verify" tag = false -current_version = "3.3.2.dev0" +current_version = "3.3.2" parse = """(?x) (?P[0-9]+) \\.(?P[0-9]+) diff --git a/setup.cfg b/setup.cfg index 804d344..f27b243 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,26 +1,3 @@ -[bumpversion] -current_version = 3.3.2.dev0 -parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.?)(?P[a-z]*)(?P\d*) -serialize = - {major}.{minor}.{patch}.{release}{relver} - {major}.{minor}.{patch} -commit = True -tag = False -sign_tags = True -tag_name = {new_version} -message = Release {new_version} - -[bumpversion:part:release] -optional_value = gamma -values = - dev - a - b - rc - gamma - -[bumpversion:file:app_helper/__init__.py] - [metadata] name = django-app-helper version = attr: app_helper.__version__