From fba59c4d97abe4252ef04cf559bcfffaf56801d2 Mon Sep 17 00:00:00 2001 From: powderflask Date: Sun, 14 Jan 2024 13:36:01 -0800 Subject: [PATCH] Bump version: 0.3.2 --> 0.3.3 --- docs/source/conf.py | 4 ++-- fmft/__init__.py | 2 +- pyproject.toml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 8fafc55..780fe3b 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -16,9 +16,9 @@ author = "Joseph Fall" # The short X.Y version. -version = "0.3.2" +version = "0.3.3" # The full version, including alpha/beta/rc tags. -release = "0.3.2" +release = "0.3.3" # The master toctree document. master_doc = "index" diff --git a/fmft/__init__.py b/fmft/__init__.py index ba2c232..0e54014 100644 --- a/fmft/__init__.py +++ b/fmft/__init__.py @@ -2,7 +2,7 @@ __author__ = """Joseph Fall""" __email__ = "powderflask@gmail.com" -__version__ = "0.3.2" +__version__ = "0.3.3" from .views import ( FilteredModelFormsetTableView, diff --git a/pyproject.toml b/pyproject.toml index 689ead7..0c10113 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta" [project] name = "django_fmft" -version = "0.3.2" +version = "0.3.3" requires-python = ">=3.8, <4.0" description = "Class-based Views that integrate django-filters and django-tables2 with model formsets." readme = "README.md" @@ -80,7 +80,7 @@ include-package-data = true # True by default, declarations in MANIFEST.in include = ["fmft", "fmft.*"] [tool.bumpver] -current_version = "0.3.2" +current_version = "0.3.3" version_pattern = "MAJOR.MINOR.PATCH" commit_message = "Bump version: {old_version} --> {new_version}" commit = true