From 330b4a238a49e086fc4e0849d967812241ebe437 Mon Sep 17 00:00:00 2001 From: Andy McFadden Date: Sun, 21 Jul 2019 16:56:25 -0700 Subject: [PATCH] Version 1.2.0-beta1 --- SourceGen/App.xaml.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/SourceGen/App.xaml.cs b/SourceGen/App.xaml.cs index 8a1e668..924afed 100644 --- a/SourceGen/App.xaml.cs +++ b/SourceGen/App.xaml.cs @@ -21,7 +21,10 @@ namespace SourceGen { /// Interaction logic for App.xaml /// public partial class App : Application { + /// + /// SourceGen version number. + /// public static readonly CommonUtil.Version ProgramVersion = - new CommonUtil.Version(1, 2, 0, CommonUtil.Version.PreRelType.Alpha, 1); + new CommonUtil.Version(1, 2, 0, CommonUtil.Version.PreRelType.Beta, 1); } }