Skip to content

Commit

Permalink
Bump version to 3.1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
sirjuddington committed May 29, 2015
1 parent f9bdd71 commit a1b214e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions SLADE.rc
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ IDI_ICON1 ICON "slade.ico"
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 3,1,0,2
PRODUCTVERSION 3,1,0,2
FILEVERSION 3,1,0,3
PRODUCTVERSION 3,1,0,3
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -77,12 +77,12 @@ BEGIN
BLOCK "0c0904b0"
BEGIN
VALUE "FileDescription", "SLADE"
VALUE "FileVersion", "3.1.0.2"
VALUE "FileVersion", "3.1.0.3"
VALUE "InternalName", "SLADE.exe"
VALUE "LegalCopyright", "Copyright (C) 2015"
VALUE "OriginalFilename", "SLADE.exe"
VALUE "ProductName", "SLADE"
VALUE "ProductVersion", "3.1.0.2"
VALUE "ProductVersion", "3.1.0.3"
END
END
BLOCK "VarFileInfo"
Expand Down
4 changes: 2 additions & 2 deletions src/MainApp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,14 +76,14 @@ namespace Global
{
string error = "";

string version = "3.1.0.2"
string version = "3.1.0.3"
#ifdef GIT_DESCRIPTION
" (" GIT_DESCRIPTION ")"
#endif
"";

int log_verbosity = 1;
int version_num = 3102;
int version_num = 3103;
int beta_num = 0;

#ifdef DEBUG
Expand Down
4 changes: 2 additions & 2 deletions win_installer/SLADE.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "SLADE"
#define MyAppVersion "3.1.0.2"
#define VersionNum "3102"
#define MyAppVersion "3.1.0.3"
#define VersionNum "3103"
#define MyAppURL "http://slade.mancubus.net"
#define MyAppExeName "SLADE.exe"

Expand Down

0 comments on commit a1b214e

Please sign in to comment.