Skip to content

Commit 1b945ca

Browse files
committed
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.
1 parent fb343f9 commit 1b945ca

File tree

2 files changed

+9
-10
lines changed

2 files changed

+9
-10
lines changed

README.md

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -44,15 +44,14 @@ flowchart TD
4444
IEXPORTER -.-> HTML
4545
IEXPORTER -.-> DOCX
4646
IFACTORY[ExporterFactory Interface<br/>interfaces/exporter.go] -.-> FACTORY
47-
48-
%% Styling
49-
classDef userInput fill:#e1f5fe,stroke:#01579b,stroke-width:2px
50-
classDef coreLogic fill:#f3e5f5,stroke:#4a148c,stroke-width:2px
51-
classDef dataSource fill:#e8f5e8,stroke:#1b5e20,stroke-width:2px
52-
classDef exporter fill:#fff3e0,stroke:#e65100,stroke-width:2px
53-
classDef output fill:#fce4ec,stroke:#880e4f,stroke-width:2px
54-
classDef interface fill:#f1f8e9,stroke:#33691e,stroke-width:1px,stroke-dasharray: 5 5
55-
classDef service fill:#e0f2f1,stroke:#00695c,stroke-width:2px
47+
%% Styling - Colors that work in both light and dark GitHub themes
48+
classDef userInput fill:#dbeafe,stroke:#1e40af,stroke-width:2px,color:#1e40af
49+
classDef coreLogic fill:#ede9fe,stroke:#6d28d9,stroke-width:2px,color:#6d28d9
50+
classDef dataSource fill:#d1fae5,stroke:#059669,stroke-width:2px,color:#059669
51+
classDef exporter fill:#fed7aa,stroke:#ea580c,stroke-width:2px,color:#ea580c
52+
classDef output fill:#fce7f3,stroke:#be185d,stroke-width:2px,color:#be185d
53+
classDef interface fill:#ecfdf5,stroke:#16a34a,stroke-width:1px,stroke-dasharray: 5 5,color:#16a34a
54+
classDef service fill:#cffafe,stroke:#0891b2,stroke-width:2px,color:#0891b2
5655
5756
class CLI userInput
5857
class APP,FACTORY coreLogic

internal/version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ package version
55
// Version information.
66
var (
77
// Version is the current version of the application.
8-
Version = "0.2.0"
8+
Version = "0.3.0"
99

1010
// BuildTime is the time the binary was built.
1111
BuildTime = "unknown"

0 commit comments

Comments
 (0)