diff --git a/docs/source/conf.py b/docs/source/conf.py index e971180d8321e2838fe9c0c7beaa7434c16966c6..adf26fec34330e3ef9947571592913ad891f9f1a 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.1' +release = '0.6.2' # -- General configuration --------------------------------------------------- diff --git a/docs/source/version_history.rst b/docs/source/version_history.rst index fdb9793463ea1a342b5c54d79b34df90e93dc0a7..eecc674dd52d1f5e76514b0b5382eaf238fb8679 100644 --- a/docs/source/version_history.rst +++ b/docs/source/version_history.rst @@ -2,6 +2,12 @@ Version History *************** +0.6.2 - Further Minor Updates +============================= +* Correct more debug output from last version. +* Add assertContent functionality to optionally include custom error messages on failure. + + 0.6.1 - Minor Updates ===================== * Correct some leftover debug output from last version. diff --git a/pyproject.toml b/pyproject.toml index dd8b885967c0c99150b9a199f8c27abda19502a1..57d33d4c9c05ee73aca3aa7923092021d7a04b6e 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.1" +version = "0.6.2" description = "Expands the existing Django TestCase class with extra functionality." readme = "readme.md" authors = [ diff --git a/setup.cfg b/setup.cfg index 144638d2ce3e7c1b5391deafd5b949c72ebd2937..b328edb17b96d1a6453f780a7f90707f289c26f0 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = django-expanded-test-cases -version = 0.6.1 +version = 0.6.2 description = Expands the existing Django TestCase class with extra functionality. long_description = file: readme.md url = https://github.com/brodriguez8774/django-expanded-test-cases