From e13ab1b2ae3370f247c3cff6f4c35e02640c9bd8 Mon Sep 17 00:00:00 2001 From: powderflask Date: Thu, 5 Oct 2023 12:26:04 -0700 Subject: [PATCH] Bump version: 0.2.0 --> 0.3.0 --- 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 e055be7..464ed20 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.2.0" +version = "0.3.0" # The full version, including alpha/beta/rc tags. -release = "0.2.0" +release = "0.3.0" # The master toctree document. master_doc = "index" diff --git a/fmft/__init__.py b/fmft/__init__.py index d6783c9..7b81d4f 100644 --- a/fmft/__init__.py +++ b/fmft/__init__.py @@ -2,7 +2,7 @@ __author__ = """Joseph Fall""" __email__ = "powderflask@gmail.com" -__version__ = "0.2.0" +__version__ = "0.3.0" from .views import ( FilteredModelFormsetTableView, diff --git a/pyproject.toml b/pyproject.toml index 61122dd..e2fe181 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta" [project] name = "django_fmft" -version = "0.2.0" +version = "0.3.0" 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.2.0" +current_version = "0.3.0" version_pattern = "MAJOR.MINOR.PATCH" commit_message = "Bump version: {old_version} --> {new_version}" commit = true