diff --git a/docs/source/conf.py b/docs/source/conf.py
index 7bcd687465aa69a04c1596fd823fbf183db68cb6..bcefee71d02a85bd7b75651d4aeaabe4d90917ef 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 f15392040db91f46d2e9033d3641445f78d5f1ed..3f3a34f920b9230fd34c35ac15d9b403a029740a 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 8acd6cb796a446799ee9d3f3e29991d9f0128ff9..021b0024cabd605222a29ce99cf66ccb9d46464f 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 714e41a6eb7bc1d3df6ada8e0ab077eb6686db3a..655100fa672fd7acb4528ad1bc78e94c977b1f27 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 d040def6e9c0a57d373534ed8829df77594ffeb2..485af8f4de8f5c71045921922198030719e2ab52 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