diff --git a/docs/source/conf.py b/docs/source/conf.py index b896393..8fafc55 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.1" +version = "0.3.2" # The full version, including alpha/beta/rc tags. -release = "0.3.1" +release = "0.3.2" # The master toctree document. master_doc = "index" diff --git a/fmft/__init__.py b/fmft/__init__.py index dd57cda..ba2c232 100644 --- a/fmft/__init__.py +++ b/fmft/__init__.py @@ -2,7 +2,7 @@ __author__ = """Joseph Fall""" __email__ = "powderflask@gmail.com" -__version__ = "0.3.1" +__version__ = "0.3.2" from .views import ( FilteredModelFormsetTableView, diff --git a/pyproject.toml b/pyproject.toml index b02f063..689ead7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta" [project] name = "django_fmft" -version = "0.3.1" +version = "0.3.2" 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.1" +current_version = "0.3.2" version_pattern = "MAJOR.MINOR.PATCH" commit_message = "Bump version: {old_version} --> {new_version}" commit = true