From 12a6fedf0acff18f82e8f60bb3a6d7080ea40fe9 Mon Sep 17 00:00:00 2001 From: Brandon Rodriguez <brodriguez8774@gmail.com> Date: Thu, 14 Sep 2023 16:22:58 -0400 Subject: [PATCH] Update version --- docs/source/conf.py | 2 +- docs/source/version_history.rst | 6 ++++++ pyproject.toml | 2 +- setup.cfg | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 51ed7e9..7bcd687 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.5.0' +release = '0.5.1' # -- General configuration --------------------------------------------------- diff --git a/docs/source/version_history.rst b/docs/source/version_history.rst index 37e5f27..8acd6cb 100644 --- a/docs/source/version_history.rst +++ b/docs/source/version_history.rst @@ -2,6 +2,12 @@ Version History *************** +0.5.1 - Update Docs and Preparation for 0.6 LiveServer Release +============================================================== +* Updated/corrected docs. +* Updated beta LiveServer classes to function with Chromedriver version 115 and higher. + + 0.5.0 - Improved Integration TestCase & Initial LiveServer TestCases ==================================================================== * Generally reworked/improved how URLs are handled in response assertions. diff --git a/pyproject.toml b/pyproject.toml index a0f9263..714e41a 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.5.0" +version = "0.5.1" description = "Expands the existing Django TestCase class with extra functionality." readme = "readme.md" authors = [ diff --git a/setup.cfg b/setup.cfg index 29cf5d4..d040def 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = django-expanded-test-cases -version = 0.5.0 +version = 0.5.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