Skip to content

Commit

Permalink
Masplund/update version (#279)
Browse files Browse the repository at this point in the history
* Update version
  • Loading branch information
mwasplund authored Dec 18, 2024
1 parent 61bf83f commit a55eaf8
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion Scripts/Linux/release
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ OUT_DIR=$ROOT_DIR/out
RUN_DIR=$OUT_DIR/run

# Cleanup previous runs
tar -a -cf $OUT_DIR/soup-build-0.41.1-linux-x64.tar.gz -C $RUN_DIR .
tar -a -cf $OUT_DIR/soup-build-0.41.2-linux-x64.tar.gz -C $RUN_DIR .
2 changes: 1 addition & 1 deletion Scripts/Linux/soup
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ CONFIG_HASH=Oltq7cGwk0Rbgy1I-3mCMDDE5yM

OWNER=mwasplund

SOUP_VERSION="0.41.1"
SOUP_VERSION="0.41.2"
COPY_VERSION="1.1.0"
MKDIR_VERSION="1.1.0"
SOUP_WREN_VERSION="0.4.3"
Expand Down
2 changes: 1 addition & 1 deletion Scripts/Linux/soupd
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ CONFIG_HASH=OZlIVjblazFuKXg-raWUNoGEnG4

OWNER=mwasplund

SOUP_VERSION="0.41.1"
SOUP_VERSION="0.41.2"
COPY_VERSION="1.1.0"
MKDIR_VERSION="1.1.0"
SOUP_WREN_VERSION="0.4.3"
Expand Down
2 changes: 1 addition & 1 deletion Scripts/Windows/SignInstaller.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ SET OutDir=%RootDir%\out

SET SIGN_COMMAND=signtool sign /n "Open Source Developer, Matthew Asplund" /t http://time.certum.pl /fd sha1 /v

SET SignFiles=%OutDir%\soup-build-0.41.1-windows-x64.msi
SET SignFiles=%OutDir%\soup-build-2-windows-x64.msi

%SIGN_COMMAND% %SignFiles%
2 changes: 1 addition & 1 deletion Scripts/Windows/install.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ SET RootDir=%ScriptsDir%..\..
SET OutDir=%RootDir%\out

pushd %OutDir%
start msiexec /package soup-build-0.41.1-windows-x64.msi /passive
start msiexec /package soup-build-2-windows-x64.msi /passive
popd
2 changes: 1 addition & 1 deletion Scripts/Windows/release.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ SET RunDir=%OutDir%\run
SET SourceDir=%RootDir%\Source
SET InstallerDir=%SourceDir%\Installer\SoupInstaller

SET SOUP_VERSION=0.41.1
SET SOUP_VERSION=0.41.2

REM - Build MSI Installer
echo msbuild %InstallerDir% -p:Configuration=Release
Expand Down
2 changes: 1 addition & 1 deletion Scripts/Windows/soup-release.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ SET ConfigHash=Oltq7cGwk0Rbgy1I-3mCMDDE5yM

SET PKG_OWNER=mwasplund

SET SOUP_VERSION=0.41.1
SET SOUP_VERSION=0.41.2
SET COPY_VERSION=1.1.0
SET MKDIR_VERSION=1.1.0
SET SOUP_WREN_VERSION=0.4.3
Expand Down
2 changes: 1 addition & 1 deletion Scripts/Windows/soup.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ SET ConfigHash=Oltq7cGwk0Rbgy1I-3mCMDDE5yM

SET PKG_OWNER=mwasplund

SET SOUP_VERSION=0.41.1
SET SOUP_VERSION=0.41.2
SET COPY_VERSION=1.1.0
SET MKDIR_VERSION=1.1.0
SET SOUP_WREN_VERSION=0.4.3
Expand Down
2 changes: 1 addition & 1 deletion Scripts/Windows/soupd.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ SET ConfigHash=OZlIVjblazFuKXg-raWUNoGEnG4

SET PKG_OWNER=mwasplund

SET SOUP_VERSION=0.41.1
SET SOUP_VERSION=0.41.2
SET COPY_VERSION=1.1.0
SET MKDIR_VERSION=1.1.0
SET SOUP_WREN_VERSION=0.4.3
Expand Down
2 changes: 1 addition & 1 deletion Source/Client/CLI/Recipe.sml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: 'Soup'
Version: 0.41.1
Version: 0.41.2
Language: 'C++|0'
Type: 'Executable'
Source: [
Expand Down
2 changes: 1 addition & 1 deletion Source/Client/CLI/Source/Commands/VersionCommand.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ namespace Soup::Client

// TODO var version = Assembly.GetExecutingAssembly().GetName().Version;
// Log::Message($"{version.Major}.{version.Minor}.{version.Build}");
Log::HighPriority("0.41.1");
Log::HighPriority("0.41.2");
}

private:
Expand Down
2 changes: 1 addition & 1 deletion Source/Installer/SoupInstaller/Setup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ class Script
{
static public void Main()
{
var soupVersion = new Version(0, 41, 1);
var soupVersion = new Version(0, 41, 2);

var soupOutFolder = "../../../out";
var soupRunFolder = $"{soupOutFolder}/run";
Expand Down

0 comments on commit a55eaf8

Please sign in to comment.