Skip to content

Commit

Permalink
Bump version to 3.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sirjuddington committed May 13, 2022
1 parent c5bbe9d commit ea8288d
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 9 deletions.
4 changes: 2 additions & 2 deletions Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>3.2.0</string>
<string>3.2.1</string>
<key>CFBundleSignature</key>
<string>SLA3</string>
<key>NSPrincipalClass</key>
Expand All @@ -29,7 +29,7 @@
<key>NSRequiresAquaSystemAppearance</key>
<false/>
<key>CFBundleVersion</key>
<string>3.2.0</string>
<string>3.2.1</string>
<key>CFBundleDocumentTypes</key>
<array>
<dict>
Expand Down
2 changes: 1 addition & 1 deletion dist/makebuild.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
$version = "3.2.0"
$version = "3.2.1"
$rev_short = Invoke-Expression "git.exe rev-parse --short HEAD"

# Check for 7-zip install
Expand Down
8 changes: 4 additions & 4 deletions msvc/SLADE.rc
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ END
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 3,2,0
PRODUCTVERSION 3,2,0
FILEVERSION 3,2,1
PRODUCTVERSION 3,2,1
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -68,12 +68,12 @@ BEGIN
BLOCK "0c0904b0"
BEGIN
VALUE "FileDescription", "SLADE"
VALUE "FileVersion", "3.2.0"
VALUE "FileVersion", "3.2.1"
VALUE "InternalName", "SLADE.exe"
VALUE "LegalCopyright", "Copyright (C) 2022"
VALUE "OriginalFilename", "SLADE.exe"
VALUE "ProductName", "SLADE"
VALUE "ProductVersion", "3.2.0"
VALUE "ProductVersion", "3.2.1"
END
END
BLOCK "VarFileInfo"
Expand Down
1 change: 1 addition & 0 deletions net.mancubus.SLADE.metainfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@
</screenshot>
</screenshots>
<releases>
<release date="2022-05-13" version="3.2.1"/>
<release date="2022-04-12" version="3.2.0"/>
<release date="2021-06-01" version="3.1.13"/>
<release date="2020-05-26" version="3.1.12"/>
Expand Down
2 changes: 1 addition & 1 deletion src/Application/App.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ bool exiting = false;
std::thread::id main_thread_id;

// Version
Version version_num{ 3, 2, 0, 0 };
Version version_num{ 3, 2, 1, 0 };

// Directory paths
string dir_data;
Expand Down
2 changes: 1 addition & 1 deletion win_installer/SLADE.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "SLADE"
#define MyAppVersion "3.2.0"
#define MyAppVersion "3.2.1"
#define MyAppURL "https://slade.mancubus.net"
#define MyAppExeName "SLADE.exe"
#define MyAppPublisher "sirjuddington"
Expand Down

0 comments on commit ea8288d

Please sign in to comment.