Skip to content

Commit

Permalink
Bump version.
Browse files Browse the repository at this point in the history
  • Loading branch information
martijnlaan committed Jun 28, 2024
1 parent 3e6802f commit 617e432
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 7 deletions.
2 changes: 1 addition & 1 deletion ISHelp/isetup.xml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
<body>

<p>
<b>Inno Setup version 6.3.1</b><br/>
<b>Inno Setup version 6.3.2</b><br/>
<b>Copyright &copy; 1997-2024 Jordan Russell. All rights reserved.</b><br/>
<b>Portions Copyright &copy; 2000-2024 Martijn Laan. All rights reserved.</b><br/>
<extlink href="https://jrsoftware.org/">Inno Setup home page</extlink>
Expand Down
4 changes: 2 additions & 2 deletions Projects/Src/Struct.pas
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ interface

const
SetupTitle = 'Inno Setup';
SetupVersion = '6.3.1';
SetupBinVersion = (6 shl 24) + (3 shl 16) + (1 shl 8) + 0;
SetupVersion = '6.3.2';
SetupBinVersion = (6 shl 24) + (3 shl 16) + (2 shl 8) + 0;

type
TSetupID = array[0..63] of AnsiChar;
Expand Down
2 changes: 1 addition & 1 deletion build-ce.bat
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ rem Once done the installer can be found in Output

setlocal

set VER=6.3.1
set VER=6.3.2

echo Building Inno Setup %VER%...
echo.
Expand Down
2 changes: 1 addition & 1 deletion build.bat
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ rem Once done the installer can be found in Output

setlocal

set VER=6.3.1
set VER=6.3.2

echo Building Inno Setup %VER%...
echo.
Expand Down
2 changes: 1 addition & 1 deletion setup.iss
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
[Setup]
AppName=Inno Setup
AppId={code:GetAppId|Inno Setup 6}
AppVersion=6.3.1
AppVersion=6.3.2
AppPublisher=jrsoftware.org
AppPublisherURL=https://www.innosetup.com/
AppSupportURL=https://www.innosetup.com/
Expand Down
7 changes: 6 additions & 1 deletion whatsnew.htm
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,14 @@

<p><b>Want to be notified by e-mail of new Inno Setup releases?</b> <a href="ismail.php">Subscribe</a> to the Inno Setup Mailing List!</p>

<p><a name="6.3.2"></a><span class="ver">6.3.2 </span><span class="date">(2024-06-28)</span></p>
<ul>
<li>Pascal Scripting change: Fixed support function <tt>TStream.Seek</tt>.</li>
</ul>

<p><a name="6.3.1"></a><span class="ver">6.3.1 </span><span class="date">(2024-06-10)</span></p>
<ul>
<li>Fix Compiler IDE startup error on systems with very high DPI.</li>
<li>Fixed Compiler IDE startup error on systems with very high DPI.</li>
</ul>

<p><a name="6.3.0"></a><span class="ver">6.3.0 </span><span class="date">(2024-06-09)</span></p>
Expand Down

0 comments on commit 617e432

Please sign in to comment.