diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9d487bf390020fa8ae2f07bfc981597ece1a6be0..34780078d24d41c952aecbf18418e49477b9d21d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,32 @@
 
 All notable changes to this project will be documented in this file.
 
+## [0.6.0] - 2023-12-29
+
+### Features
+
+- Query_raw method that returns a raw response
+
+### Miscellaneous Tasks
+
+- Bump ver to 0.6.0
+- Fix git cliff config for qol group
+- Generate changelog for v0.6.0
+
+### QoL Enhancements
+
+- Raw expression type to allow strings in the builder API 
+
+## [0.5.1] - 2023-12-28
+
+### Bug Fixes
+
+- Remove static bounds on query fn params
+
+### Miscellaneous Tasks
+
+- Bump version to 0.5.1
+
 ## [0.5.0] - 2023-12-27
 
 ### Documentation
diff --git a/Cargo.lock b/Cargo.lock
index c7466bbccd8d68a159e491ca620c7c9cc3d9e842..a7f756d49d8448c51d8f976879efa844c921b9b6 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -649,7 +649,7 @@ dependencies = [
 
 [[package]]
 name = "mquery"
-version = "0.5.1"
+version = "0.6.0"
 dependencies = [
  "dotenv",
  "enum-as-inner",
diff --git a/Cargo.toml b/Cargo.toml
index a9e44221fd1a12008d166d611c74ce411ad38e8c..f217bab2f0dbbb6ee30719435c903e4ee886a485 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "mquery"
-version = "0.5.1"
+version = "0.6.0"
 edition = "2021"
 
 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
diff --git a/cliff.toml b/cliff.toml
index 973276425f772745e3165724b641393be9d84f2a..b523766b9a145bb750df25b7febe74f7f15475a8 100644
--- a/cliff.toml
+++ b/cliff.toml
@@ -49,8 +49,8 @@ commit_preprocessors = [
 ]
 # regex for parsing and grouping commits
 commit_parsers = [
+  { message = "^feat\\(qol\\)|^qol", group = "QoL Enhancements"},
   { message = "^[f,F]eat", group = "Features" },
-  { message = "^feat(qol)|qol", group = "QoL Enhancements"},
   { message = "^fix", group = "Bug Fixes" },
   { message = "^doc", group = "Documentation" },
   { message = "^perf", group = "Performance" },