diff --git a/.changes/specta-util.md b/.changes/specta-util.md
deleted file mode 100644
index 6f934e0cb..000000000
--- a/.changes/specta-util.md
+++ /dev/null
@@ -1,8 +0,0 @@
----
-geolocation: patch
-geolocation-js: patch
-haptics: patch
-haptics-js: patch
----
-
-Added `specta-util` to fix a "dependency not found" compilation error.
diff --git a/Cargo.lock b/Cargo.lock
index 6ecc1b913..df7745ba2 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -206,7 +206,7 @@ checksum = "4c95c10ba0b00a02636238b814946408b1322d5ac4760326e6fb8ec956d85775"
 
 [[package]]
 name = "api"
-version = "2.0.12"
+version = "2.0.13"
 dependencies = [
  "log",
  "serde",
@@ -6591,7 +6591,7 @@ dependencies = [
 
 [[package]]
 name = "tauri-plugin-geolocation"
-version = "2.2.0"
+version = "2.2.1"
 dependencies = [
  "log",
  "serde",
@@ -6618,7 +6618,7 @@ dependencies = [
 
 [[package]]
 name = "tauri-plugin-haptics"
-version = "2.2.0"
+version = "2.2.1"
 dependencies = [
  "log",
  "serde",
diff --git a/examples/api/src-tauri/CHANGELOG.md b/examples/api/src-tauri/CHANGELOG.md
index 72b255ae2..5f2a926ac 100644
--- a/examples/api/src-tauri/CHANGELOG.md
+++ b/examples/api/src-tauri/CHANGELOG.md
@@ -1,5 +1,12 @@
 # Changelog
 
+## \[2.0.13]
+
+### Dependencies
+
+- Upgraded to `geolocation@2.2.1`
+- Upgraded to `haptics@2.2.1`
+
 ## \[2.0.12]
 
 ### Dependencies
diff --git a/examples/api/src-tauri/Cargo.toml b/examples/api/src-tauri/Cargo.toml
index 9cac00947..3ab7e3f78 100644
--- a/examples/api/src-tauri/Cargo.toml
+++ b/examples/api/src-tauri/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "api"
 publish = false
-version = "2.0.12"
+version = "2.0.13"
 description = "An example Tauri Application showcasing the api"
 edition = "2021"
 rust-version = { workspace = true }
@@ -60,8 +60,8 @@ tauri-plugin-window-state = { path = "../../../plugins/window-state", version =
 tauri-plugin-barcode-scanner = { path = "../../../plugins/barcode-scanner/", version = "2.2.0" }
 tauri-plugin-nfc = { path = "../../../plugins/nfc", version = "2.2.0" }
 tauri-plugin-biometric = { path = "../../../plugins/biometric/", version = "2.2.0" }
-tauri-plugin-geolocation = { path = "../../../plugins/geolocation/", version = "2.2.0" }
-tauri-plugin-haptics = { path = "../../../plugins/haptics/", version = "2.2.0" }
+tauri-plugin-geolocation = { path = "../../../plugins/geolocation/", version = "2.2.1" }
+tauri-plugin-haptics = { path = "../../../plugins/haptics/", version = "2.2.1" }
 
 [features]
 prod = ["tauri/custom-protocol"]
diff --git a/plugins/geolocation/CHANGELOG.md b/plugins/geolocation/CHANGELOG.md
index 96b5377ab..7f51d5629 100644
--- a/plugins/geolocation/CHANGELOG.md
+++ b/plugins/geolocation/CHANGELOG.md
@@ -1,5 +1,9 @@
 # Changelog
 
+## \[2.2.1]
+
+- [`fb67ab2b`](https://github.com/tauri-apps/plugins-workspace/commit/fb67ab2b926502bfc20d6b43fbdd156691ea8526) ([#2281](https://github.com/tauri-apps/plugins-workspace/pull/2281) by [@FabianLars](https://github.com/tauri-apps/plugins-workspace/../../FabianLars)) Added `specta-util` to fix a "dependency not found" compilation error.
+
 ## \[2.2.0]
 
 - [`3a79266b`](https://github.com/tauri-apps/plugins-workspace/commit/3a79266b8cf96a55b1ae6339d725567d45a44b1d) ([#2173](https://github.com/tauri-apps/plugins-workspace/pull/2173) by [@FabianLars](https://github.com/tauri-apps/plugins-workspace/../../FabianLars)) Bumped all plugins to `v2.2.0`. From now, the versions for the Rust and JavaScript packages of each plugin will be in sync with each other.
diff --git a/plugins/geolocation/Cargo.toml b/plugins/geolocation/Cargo.toml
index ab4ecac53..86b8e4610 100644
--- a/plugins/geolocation/Cargo.toml
+++ b/plugins/geolocation/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "tauri-plugin-geolocation"
 description = "Get and track the device's current position"
-version = "2.2.0"
+version = "2.2.1"
 edition = { workspace = true }
 authors = { workspace = true }
 license = { workspace = true }
diff --git a/plugins/geolocation/package.json b/plugins/geolocation/package.json
index 64af51d4a..c48b08239 100644
--- a/plugins/geolocation/package.json
+++ b/plugins/geolocation/package.json
@@ -1,6 +1,6 @@
 {
   "name": "@tauri-apps/plugin-geolocation",
-  "version": "2.2.0",
+  "version": "2.2.1",
   "license": "MIT OR Apache-2.0",
   "authors": [
     "Tauri Programme within The Commons Conservancy"
diff --git a/plugins/haptics/CHANGELOG.md b/plugins/haptics/CHANGELOG.md
index f2f5a5628..46eb56358 100644
--- a/plugins/haptics/CHANGELOG.md
+++ b/plugins/haptics/CHANGELOG.md
@@ -1,5 +1,9 @@
 # Changelog
 
+## \[2.2.1]
+
+- [`fb67ab2b`](https://github.com/tauri-apps/plugins-workspace/commit/fb67ab2b926502bfc20d6b43fbdd156691ea8526) ([#2281](https://github.com/tauri-apps/plugins-workspace/pull/2281) by [@FabianLars](https://github.com/tauri-apps/plugins-workspace/../../FabianLars)) Added `specta-util` to fix a "dependency not found" compilation error.
+
 ## \[2.2.0]
 
 - [`3a79266b`](https://github.com/tauri-apps/plugins-workspace/commit/3a79266b8cf96a55b1ae6339d725567d45a44b1d) ([#2173](https://github.com/tauri-apps/plugins-workspace/pull/2173) by [@FabianLars](https://github.com/tauri-apps/plugins-workspace/../../FabianLars)) Bumped all plugins to `v2.2.0`. From now, the versions for the Rust and JavaScript packages of each plugin will be in sync with each other.
diff --git a/plugins/haptics/Cargo.toml b/plugins/haptics/Cargo.toml
index 4aa10942e..f18672f91 100644
--- a/plugins/haptics/Cargo.toml
+++ b/plugins/haptics/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "tauri-plugin-haptics"
 description = "Haptic feedback and vibrations on Android and iOS"
-version = "2.2.0"
+version = "2.2.1"
 edition = { workspace = true }
 authors = { workspace = true }
 license = { workspace = true }
diff --git a/plugins/haptics/package.json b/plugins/haptics/package.json
index 8120d93b8..81156cd94 100644
--- a/plugins/haptics/package.json
+++ b/plugins/haptics/package.json
@@ -1,6 +1,6 @@
 {
   "name": "@tauri-apps/plugin-haptics",
-  "version": "2.2.0",
+  "version": "2.2.1",
   "license": "MIT OR Apache-2.0",
   "authors": [
     "Tauri Programme within The Commons Conservancy"