From b9a59a86495a130f6a59f7eb518d2b94a752f842 Mon Sep 17 00:00:00 2001 From: Juergen Kunz Date: Sun, 5 Apr 2026 12:41:39 +0000 Subject: [PATCH] fix(readme): correct ASCII diagram spacing in architecture overview --- changelog.md | 5 +++++ readme.md | 12 ++++++------ ts/00_commitinfo_data.ts | 2 +- 3 files changed, 12 insertions(+), 7 deletions(-) diff --git a/changelog.md b/changelog.md index db9ac6e..1427549 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,10 @@ # Changelog +## 2026-04-05 - 2.6.1 - fix(readme) +correct ASCII diagram spacing in architecture overview + +- Adjusts alignment in the README architecture diagram for clearer visual formatting. + ## 2026-04-05 - 2.6.0 - feat(readme) document index enforcement, storage reliability, and data integrity validation features diff --git a/readme.md b/readme.md index 990212b..c83b92b 100644 --- a/readme.md +++ b/readme.md @@ -46,13 +46,13 @@ SmartDB uses a **sidecar binary** pattern — TypeScript handles lifecycle, Rust ┌──────────────────────────────────────────────────────────────┐ │ Your Application │ │ (TypeScript / Node.js) │ -│ ┌─────────────────┐ ┌───────────────────────────┐ │ +│ ┌─────────────────┐ ┌───────────────────────────┐ │ │ │ SmartdbServer │────▶│ RustDbBridge (IPC) │ │ │ │ or LocalSmartDb │ │ @push.rocks/smartrust │ │ -│ └─────────────────┘ └───────────┬───────────────┘ │ -└──────────────────────────────────────┼───────────────────────┘ - │ spawn + JSON IPC - ▼ +│ └─────────────────┘ └───────────┬───────────────┘ │ +└─────────────────────────────────── ───┼───────────────────────┘ + │ spawn + JSON IPC + ▼ ┌──────────────────────────────────────────────────────────────┐ │ rustdb binary │ │ │ @@ -60,7 +60,7 @@ SmartDB uses a **sidecar binary** pattern — TypeScript handles lifecycle, Rust │ │ Wire Protocol│→ │Command Router│→ │ Handlers │ │ │ │ (OP_MSG) │ │ (40+ cmds) │ │ Find,Insert.. │ │ │ └──────────────┘ └──────────────┘ └───────┬───────┘ │ -│ │ │ +│ │ │ │ ┌─────────┐ ┌────────┐ ┌───────────┐ ┌──────┴──────┐ │ │ │ Query │ │ Update │ │Aggregation│ │ Index │ │ │ │ Matcher │ │ Engine │ │ Engine │ │ Engine │ │ diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 39f9b95..1d8ee7d 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@push.rocks/smartdb', - version: '2.6.0', + version: '2.6.1', description: 'A MongoDB-compatible embedded database server with wire protocol support, backed by a high-performance Rust engine.' }