diff --git a/ChangeLog.md b/ChangeLog.md index 2982417..92f3b26 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -2,6 +2,8 @@ ## Unreleased changes +## 0.2.1 + - Add Readme.md to Windows installation - Fix sample.csv typo - Float inputs accept "-" as first letter diff --git a/frontend/src/View.elm b/frontend/src/View.elm index a883f67..879d19f 100644 --- a/frontend/src/View.elm +++ b/frontend/src/View.elm @@ -465,7 +465,7 @@ renderLogoModule model = , label = text "website" } - , el [ Font.size 15 ] <| text "version : 0.2.0" + , el [ Font.size 15 ] <| text "version : 0.2.1" , el [ Font.size 30 ] <| text "Modbus Client" ] diff --git a/install.nsi b/install.nsi index f74b212..34d929f 100644 --- a/install.nsi +++ b/install.nsi @@ -8,7 +8,7 @@ Unicode True !define VERSIONMAJOR 0 !define VERSIONMINOR 2 -!define VERSIONPATCH 0 +!define VERSIONPATCH 1 ; The name of the installer Name "Modbus Client" diff --git a/package.yaml b/package.yaml index 085099a..8a39c4b 100644 --- a/package.yaml +++ b/package.yaml @@ -1,5 +1,5 @@ name: modbus-client -version: 0.2.0.0 +version: 0.2.1.0 github: "3kyro/modbus-client" license: BSD3 author: "Kyriakos Papachrysanthou"