From 3e3a0f34ebad214d5f6653aa7f3e727322b9cf54 Mon Sep 17 00:00:00 2001
From: Brandon Rodriguez <brodriguez8774@gmail.com>
Date: Wed, 22 Nov 2023 00:59:50 -0500
Subject: [PATCH] Update project version info

---
 docs/source/conf.py             |  2 +-
 docs/source/roadmap.rst         | 31 +++++++------------------------
 docs/source/version_history.rst | 14 +++++++++++++-
 pyproject.toml                  |  2 +-
 setup.cfg                       |  2 +-
 5 files changed, 23 insertions(+), 28 deletions(-)

diff --git a/docs/source/conf.py b/docs/source/conf.py
index 7bcd687..bcefee7 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.1'
+release = '0.6.0'
 
 
 # -- General configuration ---------------------------------------------------
diff --git a/docs/source/roadmap.rst b/docs/source/roadmap.rst
index f153920..3f3a34f 100644
--- a/docs/source/roadmap.rst
+++ b/docs/source/roadmap.rst
@@ -3,40 +3,23 @@ Expected Roadmap
 
 Below is the minimum viable state for each version release.
 
-* v 0.2.x
 
-    * Project is in a viable state to import and use in other projects, even if
-      only for only basic response testing.
-    * **BaseTestCase** and **IntegrationTestCase** are roughly stable.
-
-        * Further functionality may still be added at a later date. But core
-          logic is present.
-
-    * At least some documentation exists for BaseTestCase and IntegrationTestCase.
-
-* v 0.6.x
-
-    * Project is in a viable state to test both basic responses and selenium
-      browser responses.
-    * **LiveServerTestCase** is roughly stable.
-
-        * Further functionality may still be added at a later date. But core
-          logic is present.
+* v 0.7.x
 
-    * Documentation for BaseTestCase and IntegrationTestCase is fairly thorough,
-      if not complete.
-    * At least some documentation exists for LiveServerTestCase.
+    * Project is in a viable state to test basic responses, selenium browser
+      responses, and has form helper functions.
+    * Documentation for LiveServerTestCase is fairly thorough, if not complete.
 
-* v 0.7.x
+* v 0.8.x
 
     * Project is in a viable state to test basic responses, selenium browser
-      responses, and CSV file downloads.
+      responses, CSV file downloads, and has form helper functions.
     * **Csv/ReportTestCase** is roughly stable.
 
         * Further functionality may still be added at a later date. But core
           logic is present.
 
-    * Documentation for LiveServerTestCase is fairly thorough, if not complete.
+    * Documentation for all prior releases is fairly thorough, if not complete.
     * At least some documentation exists for Csv/ReportTestCase.
 
 * Unsure of roadmap past this point. To be decided at a later date.
diff --git a/docs/source/version_history.rst b/docs/source/version_history.rst
index 8acd6cb..021b002 100644
--- a/docs/source/version_history.rst
+++ b/docs/source/version_history.rst
@@ -2,10 +2,22 @@ Version History
 ***************
 
 
+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
+      further examination.
+    * New documentation for this is fairly non-existent at the moment. All
+      test case options are available to view at
+      ``<project_root>/django_expanded_text_cases/`text_cases/constants.py``.
+
+
 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.
+* Updated beta LiveServer classes to function with Chromedriver version 115 and
+  higher.
 
 
 0.5.0 - Improved Integration TestCase & Initial LiveServer TestCases
diff --git a/pyproject.toml b/pyproject.toml
index 714e41a..655100f 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.1"
+version = "0.6.0"
 description = "Expands the existing Django TestCase class with extra functionality."
 readme = "readme.md"
 authors = [
diff --git a/setup.cfg b/setup.cfg
index d040def..485af8f 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,6 +1,6 @@
 [metadata]
 name = django-expanded-test-cases
-version = 0.5.1
+version = 0.6.0
 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