diff --git a/docs/source/conf.py b/docs/source/conf.py index adf26fec34330e3ef9947571592913ad891f9f1a..20a51c2afd6c7feecdee2d645eb836876a9c80f8 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.2' +release = '0.6.3' # -- General configuration --------------------------------------------------- diff --git a/docs/source/version_history.rst b/docs/source/version_history.rst index eecc674dd52d1f5e76514b0b5382eaf238fb8679..8a360944fd702ab808d77b0ad2af4b4a8281fa7b 100644 --- a/docs/source/version_history.rst +++ b/docs/source/version_history.rst @@ -2,6 +2,16 @@ Version History *************** +0.6.3 - Minor Test-Failure Debug Output Customization +===================================================== +* Now supports using regex to hide sections of debug output on test failure. + * Useful for debugging template output with large amounts of content. + * Particularly useful for templates that include third-party content (which + you're unlikely to test for, that should be done in the third-party app + itself), or projects with large amounts of header/footer/javascript html + content. + + 0.6.2 - Further Minor Updates ============================= * Correct more debug output from last version. diff --git a/pyproject.toml b/pyproject.toml index 57d33d4c9c05ee73aca3aa7923092021d7a04b6e..03fd4bdc44238909f3ef7c8930d9c48f28095b64 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.2" +version = "0.6.3" description = "Expands the existing Django TestCase class with extra functionality." readme = "readme.md" authors = [ diff --git a/setup.cfg b/setup.cfg index b328edb17b96d1a6453f780a7f90707f289c26f0..7c1f17d336def6d62135131b5bd1f13600ae01df 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = django-expanded-test-cases -version = 0.6.2 +version = 0.6.3 description = Expands the existing Django TestCase class with extra functionality. long_description = file: readme.md url = https://github.com/brodriguez8774/django-expanded-test-cases