diff --git a/.changeset/real-onions-confess.md b/.changeset/real-onions-confess.md
deleted file mode 100644
index 5f11b225ad58..000000000000
--- a/.changeset/real-onions-confess.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'svelte': patch
----
-
-fix: inherit correct namespace for `
` elements
diff --git a/.changeset/tidy-dragons-thank.md b/.changeset/tidy-dragons-thank.md
deleted file mode 100644
index 1257ec02101e..000000000000
--- a/.changeset/tidy-dragons-thank.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'svelte': patch
----
-
-fix: don't throw `bind_invalid_export` if there's also a bindable prop with the same name
diff --git a/packages/svelte/CHANGELOG.md b/packages/svelte/CHANGELOG.md
index 43898eb1079e..cc834a7ca379 100644
--- a/packages/svelte/CHANGELOG.md
+++ b/packages/svelte/CHANGELOG.md
@@ -1,5 +1,13 @@
# svelte
+## 5.16.5
+
+### Patch Changes
+
+- fix: inherit correct namespace for `` elements ([#14817](https://github.com/sveltejs/svelte/pull/14817))
+
+- fix: don't throw `bind_invalid_export` if there's also a bindable prop with the same name ([#14813](https://github.com/sveltejs/svelte/pull/14813))
+
## 5.16.4
### Patch Changes
diff --git a/packages/svelte/package.json b/packages/svelte/package.json
index 59bc861560f7..682cf30fb309 100644
--- a/packages/svelte/package.json
+++ b/packages/svelte/package.json
@@ -2,7 +2,7 @@
"name": "svelte",
"description": "Cybernetically enhanced web apps",
"license": "MIT",
- "version": "5.16.4",
+ "version": "5.16.5",
"type": "module",
"types": "./types/index.d.ts",
"engines": {
diff --git a/packages/svelte/src/version.js b/packages/svelte/src/version.js
index b51c659b31f5..d4fd729b38af 100644
--- a/packages/svelte/src/version.js
+++ b/packages/svelte/src/version.js
@@ -4,5 +4,5 @@
* The current version, as set in package.json.
* @type {string}
*/
-export const VERSION = '5.16.4';
+export const VERSION = '5.16.5';
export const PUBLIC_VERSION = '5';