From 1b945ca2bc8acace9311035898a454e5eb9ae45a Mon Sep 17 00:00:00 2001 From: Kaj Kowalski Date: Wed, 28 May 2025 13:26:33 +0200 Subject: [PATCH] Updates version and improves diagram styling Bumps application version to 0.3.0 for new features or fixes. Enhances README diagram styling for better readability in both light and dark GitHub themes by adjusting colors and adding text color contrast. --- README.md | 17 ++++++++--------- internal/version/version.go | 2 +- 2 files changed, 9 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9126e95..8b20f55 100644 --- a/README.md +++ b/README.md @@ -44,15 +44,14 @@ flowchart TD IEXPORTER -.-> HTML IEXPORTER -.-> DOCX IFACTORY[ExporterFactory Interface
interfaces/exporter.go] -.-> FACTORY - - %% Styling - classDef userInput fill:#e1f5fe,stroke:#01579b,stroke-width:2px - classDef coreLogic fill:#f3e5f5,stroke:#4a148c,stroke-width:2px - classDef dataSource fill:#e8f5e8,stroke:#1b5e20,stroke-width:2px - classDef exporter fill:#fff3e0,stroke:#e65100,stroke-width:2px - classDef output fill:#fce4ec,stroke:#880e4f,stroke-width:2px - classDef interface fill:#f1f8e9,stroke:#33691e,stroke-width:1px,stroke-dasharray: 5 5 - classDef service fill:#e0f2f1,stroke:#00695c,stroke-width:2px + %% Styling - Colors that work in both light and dark GitHub themes + classDef userInput fill:#dbeafe,stroke:#1e40af,stroke-width:2px,color:#1e40af + classDef coreLogic fill:#ede9fe,stroke:#6d28d9,stroke-width:2px,color:#6d28d9 + classDef dataSource fill:#d1fae5,stroke:#059669,stroke-width:2px,color:#059669 + classDef exporter fill:#fed7aa,stroke:#ea580c,stroke-width:2px,color:#ea580c + classDef output fill:#fce7f3,stroke:#be185d,stroke-width:2px,color:#be185d + classDef interface fill:#ecfdf5,stroke:#16a34a,stroke-width:1px,stroke-dasharray: 5 5,color:#16a34a + classDef service fill:#cffafe,stroke:#0891b2,stroke-width:2px,color:#0891b2 class CLI userInput class APP,FACTORY coreLogic diff --git a/internal/version/version.go b/internal/version/version.go index 9a073f4..1280543 100644 --- a/internal/version/version.go +++ b/internal/version/version.go @@ -5,7 +5,7 @@ package version // Version information. var ( // Version is the current version of the application. - Version = "0.2.0" + Version = "0.3.0" // BuildTime is the time the binary was built. BuildTime = "unknown"