diff --git a/changelog.md b/changelog.md index ebe1b33..8db1247 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,11 @@ # Changelog +## 2026-02-11 - 5.1.2 - fix(readme) +adjust ASCII architecture diagram alignment in README + +- Whitespace and alignment tweaks to the ASCII architecture diagram in readme.md +- No code or behavior changes; documentation-only edit + ## 2026-02-11 - 5.1.1 - fix(release) no changes diff --git a/readme.md b/readme.md index fe45da2..4059031 100644 --- a/readme.md +++ b/readme.md @@ -43,28 +43,28 @@ After installation, run `pnpm build` to compile the Rust binary (`mailer-bin`). ``` ┌──────────────────────────────────────────────────────────────┐ -│ UnifiedEmailServer │ -│ (orchestrates all components, emits events) │ +│ UnifiedEmailServer │ +│ (orchestrates all components, emits events) │ ├───────────┬───────────┬──────────────┬───────────────────────┤ │ Email │ Security │ Delivery │ Configuration │ │ Router │ Stack │ System │ │ -│ ┌──────┐ │ ┌───────┐ │ ┌──────────┐ │ ┌────────────────┐ │ -│ │Match │ │ │ DKIM │ │ │ Queue │ │ │ DomainRegistry │ │ -│ │Route │ │ │ SPF │ │ │ Rate Lim │ │ │ DnsManager │ │ -│ │ Act │ │ │ DMARC │ │ │ Retry │ │ │ DKIMCreator │ │ -│ └──────┘ │ │ IPRep │ │ └──────────┘ │ │ Templates │ │ -│ │ │ Scan │ │ │ └────────────────┘ │ +│ ┌──────┐ │ ┌───────┐ │ ┌──────────┐ │ ┌────────────────┐ │ +│ │Match │ │ │ DKIM │ │ │ Queue │ │ │ DomainRegistry │ │ +│ │Route │ │ │ SPF │ │ │ Rate Lim │ │ │ DnsManager │ │ +│ │ Act │ │ │ DMARC │ │ │ Retry │ │ │ DKIMCreator │ │ +│ └──────┘ │ │ IPRep │ │ └──────────┘ │ │ Templates │ │ +│ │ │ Scan │ │ │ └────────────────┘ │ │ │ └───────┘ │ │ │ ├───────────┴───────────┴──────────────┴───────────────────────┤ -│ Rust Security Bridge (smartrust IPC) │ +│ Rust Security Bridge (smartrust IPC) │ ├──────────────────────────────────────────────────────────────┤ -│ Rust Acceleration Layer │ -│ ┌──────────────┐ ┌───────────────┐ ┌──────────────────┐ │ -│ │ mailer-smtp │ │mailer-security│ │ mailer-core │ │ -│ │ SMTP Server │ │DKIM/SPF/DMARC │ │ Types/Validation │ │ -│ │ SMTP Client │ │IP Rep/Content │ │ MIME/Bounce │ │ -│ │ TLS/AUTH │ │ Scanning │ │ Detection │ │ -│ └──────────────┘ └───────────────┘ └──────────────────┘ │ +│ Rust Acceleration Layer │ +│ ┌──────────────┐ ┌───────────────┐ ┌──────────────────┐ │ +│ │ mailer-smtp │ │mailer-security│ │ mailer-core │ │ +│ │ SMTP Server │ │DKIM/SPF/DMARC │ │ Types/Validation │ │ +│ │ SMTP Client │ │IP Rep/Content │ │ MIME/Bounce │ │ +│ │ TLS/AUTH │ │ Scanning │ │ Detection │ │ +│ └──────────────┘ └───────────────┘ └──────────────────┘ │ └──────────────────────────────────────────────────────────────┘ ``` diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index c6b8da2..38df9c9 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@push.rocks/smartmta', - version: '5.1.1', + version: '5.1.2', description: 'A high-performance, enterprise-grade Mail Transfer Agent (MTA) built from scratch in TypeScript with Rust acceleration.' }