We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8a1e17 commit c98611dCopy full SHA for c98611d
CHANGELOG.md
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
7
## [Unreleased]
8
9
+## [0.5.2] - 2022-03-03
10
+
11
+### Fixed
12
13
+- Show correct version in bottom left
14
15
## [0.5.1] - 2022-03-03
16
17
### Changed
src/Andromeda/AvaloniaApp/ViewComponents/LeftBar.fs
@@ -138,7 +138,7 @@ module LeftBar =
138
let assemblyVersion = Assembly.GetEntryAssembly().GetName().Version
139
140
match assemblyVersion with
141
- | v when v.Major > 0 -> $"v{v.Major}.{v.Minor}.{v.Build}"
+ | v when v.Major > 0 || v.Minor > 0 -> $"v{v.Major}.{v.Minor}.{v.Build}"
142
| _ -> "development build"
143
144
StackPanel.create [
0 commit comments