From 6c4339185e7fb000c40d87ecfdb0f10ebd4329ea Mon Sep 17 00:00:00 2001 From: Brandon Rodriguez <brodriguez8774@gmail.com> Date: Sun, 17 Dec 2023 13:28:16 -0500 Subject: [PATCH] Update project version --- docs/source/conf.py | 2 +- docs/source/version_history.rst | 11 ++++++++--- pyproject.toml | 2 +- setup.cfg | 2 +- 4 files changed, 11 insertions(+), 6 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 9d64795..a279534 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -25,7 +25,7 @@ copyright = '2022, Brandon Rodriguez' author = 'Brandon Rodriguez' # The full version, including alpha/beta/rc tags -release = '0.6.4' +release = '0.6.5' # -- General configuration --------------------------------------------------- diff --git a/docs/source/version_history.rst b/docs/source/version_history.rst index 89229c0..6ab83a4 100644 --- a/docs/source/version_history.rst +++ b/docs/source/version_history.rst @@ -1,13 +1,18 @@ Version History *************** -0.6.4 - Correction for Rare Bug in Debug Output Context Parsing -=============================================================== + +0.6.5 - Bugfix Update +===================== +* Correction for bug in standardization of assertTitle function logic. + + +0.6.4 - Bugfix Update +===================== * Correction for bug in regards to ContextDict/ContextList objects and displaying debug output. - 0.6.3 - Minor Test-Failure Debug Output Customization ===================================================== * Now supports using regex to hide sections of debug output on test failure. diff --git a/pyproject.toml b/pyproject.toml index 850e2b4..47805b2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = 'setuptools.build_meta:__legacy__' [project] name = "django-expanded-test-cases" -version = "0.6.4" +version = "0.6.5" description = "Expands the existing Django TestCase class with extra functionality." readme = "readme.md" authors = [ diff --git a/setup.cfg b/setup.cfg index 7b6ba56..0118c77 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = django-expanded-test-cases -version = 0.6.4 +version = 0.6.5 description = Expands the existing Django TestCase class with extra functionality. long_description = file: readme.md url = https://github.com/brodriguez8774/django-expanded-test-cases -- GitLab