From eda733af86131163478a325eec46f201bc9cf08f Mon Sep 17 00:00:00 2001 From: Brandon Rodriguez <brodriguez8774@gmail.com> Date: Wed, 22 Nov 2023 19:48:02 -0500 Subject: [PATCH] Update project version --- docs/source/conf.py | 2 +- docs/source/version_history.rst | 8 +++++++- pyproject.toml | 2 +- setup.cfg | 2 +- 4 files changed, 10 insertions(+), 4 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index bcefee7..e971180 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.0' +release = '0.6.1' # -- General configuration --------------------------------------------------- diff --git a/docs/source/version_history.rst b/docs/source/version_history.rst index 021b002..fdb9793 100644 --- a/docs/source/version_history.rst +++ b/docs/source/version_history.rst @@ -2,8 +2,14 @@ Version History *************** +0.6.1 - Minor Updates +===================== +* Correct some leftover debug output from last version. +* Add a missing assertion type to IntegrationTestcase. + + 0.6.0 - LiveServer Test Case Initial Release -============================================================== +============================================ * ``LiveServerTestCase`` and ``ChannelsLiveServerTestCase`` both exists, and at least function in a non-multi-threaded environment. * Seems to have some issues in multi-threaded testing environments. Needs diff --git a/pyproject.toml b/pyproject.toml index 655100f..dd8b885 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.0" +version = "0.6.1" description = "Expands the existing Django TestCase class with extra functionality." readme = "readme.md" authors = [ diff --git a/setup.cfg b/setup.cfg index 485af8f..144638d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = django-expanded-test-cases -version = 0.6.0 +version = 0.6.1 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