diff --git a/docs/source/conf.py b/docs/source/conf.py
index bcefee71d02a85bd7b75651d4aeaabe4d90917ef..e971180d8321e2838fe9c0c7beaa7434c16966c6 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 021b0024cabd605222a29ce99cf66ccb9d46464f..fdb9793463ea1a342b5c54d79b34df90e93dc0a7 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 655100fa672fd7acb4528ad1bc78e94c977b1f27..dd8b885967c0c99150b9a199f8c27abda19502a1 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 485af8f4de8f5c71045921922198030719e2ab52..144638d2ce3e7c1b5391deafd5b949c72ebd2937 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