Skip to content

Commit

Permalink
Increment version to 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
chelh committed Apr 19, 2017
1 parent 9bba0e2 commit 1a8ec1f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion MakeInstaller.iss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#define MyAppName "VBA Sync Tool"
#define MyAppVersion "1.3.0"
#define MyAppVersion "1.3.1"
#define MyAppPublisher "Chelsea Hughes"
#define MyAppURL "https://github.com/chelh/VBASync"
#define MyAppExeName "VBA Sync Tool.exe"
Expand Down
4 changes: 2 additions & 2 deletions MakePortable.bat
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
set version=1.3.0
set version=1.3.1
set pathTo7Zip=%ProgramFiles%\7-Zip\

"%pathTo7Zip%7z.exe" a "dist\Portable VBA Sync Tool %version%.zip" "3RDPARTY\*" "LICENSE.rtf" ".\src\VBACompressionCodec.dll" ".\src\VBASync\bin\Release\VBA Sync Tool.exe" ".\src\VBASync.ini"
"%pathTo7Zip%7z.exe" a "dist\Portable VBA Sync Tool %version%.zip" "3RDPARTY\*" "LICENSE.rtf" ".\src\VBACompressionCodec.dll" ".\src\VBASync\bin\Release\VBA Sync Tool.exe" ".\src\VBASync.ini"
2 changes: 1 addition & 1 deletion src/VBASync/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
[assembly: AssemblyProduct("VBA Sync Tool")]
[assembly: AssemblyCopyright("Copyright © 2017 Chelsea Hughes")]

[assembly: AssemblyVersion("1.3.0")]
[assembly: AssemblyVersion("1.3.1")]
2 changes: 1 addition & 1 deletion src/VBASync/WPF/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ internal partial class MainWindow {
internal const int CopyrightYear = 2017;
internal const string SupportUrl = "https://github.com/chelh/VBASync";

internal static readonly Version Version = new Version(1, 3, 0);
internal static readonly Version Version = new Version(1, 3, 1);

private readonly MainViewModel _vm;

Expand Down

0 comments on commit 1a8ec1f

Please sign in to comment.