diff --git a/package-lock.json b/package-lock.json
index e4dd48b8d..63bea268d 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -19965,7 +19965,7 @@
},
"services/backend": {
"name": "@deploystack/backend",
- "version": "0.28.0",
+ "version": "0.28.2",
"dependencies": {
"@fastify/cookie": "^11.0.2",
"@fastify/cors": "^11.0.1",
diff --git a/services/backend/CHANGELOG.md b/services/backend/CHANGELOG.md
index fd2618353..3273bcff7 100644
--- a/services/backend/CHANGELOG.md
+++ b/services/backend/CHANGELOG.md
@@ -1,5 +1,9 @@
# Changelog
+## 0.28.2 (2025-08-07)
+
+* enhance SQL statement handling for Turso compatibility ([98fe23e](https://github.com/deploystackio/deploystack/commit/98fe23ef374d03c9a1724be815e43ae543ea8521))
+
## 0.28.1 (2025-08-07)
* remove scoped commit implementation documentation ([8311fc8](https://github.com/deploystackio/deploystack/commit/8311fc89c5c7c6ca4944c0f7040275e00d5170b9))
diff --git a/services/backend/package.json b/services/backend/package.json
index c69b9601a..a8a91fbf6 100644
--- a/services/backend/package.json
+++ b/services/backend/package.json
@@ -1,6 +1,6 @@
{
"name": "@deploystack/backend",
- "version": "0.28.1",
+ "version": "0.28.2",
"scripts": {
"dev": "nodemon",
"build": "tsc",
diff --git a/services/backend/src/config/version.ts b/services/backend/src/config/version.ts
index 91141688d..14bfb3404 100644
--- a/services/backend/src/config/version.ts
+++ b/services/backend/src/config/version.ts
@@ -9,8 +9,8 @@ export interface VersionInfo {
// This will be replaced by the build script
let versionData: VersionInfo = {
- version: '0.28.0',
- buildTime: '2025-08-07T15:48:45.540Z',
+ version: '0.28.2',
+ buildTime: '2025-08-07T19:47:53.872Z',
source: 'release'
};