Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion code/client/cli/recipe.sml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: 'Soup'
Version: 0.42.5
Version: 0.42.6
Language: 'C++|0'
Type: 'Executable'
Source: [
Expand Down
2 changes: 1 addition & 1 deletion code/client/cli/source/commands/version-command.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.42.5");
Log::HighPriority("0.42.6");
}

private:
Expand Down
2 changes: 1 addition & 1 deletion scripts/linux/release
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ RELEASE_DIR=$OUT_DIR/release

# Pack the release tarbal
mkdir -p $RELEASE_DIR
tar -a -cf $RELEASE_DIR/soup-build-0.42.5-linux-x64.tar.gz -C $RUN_DIR .
tar -a -cf $RELEASE_DIR/soup-build-0.42.6-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.42.5"
SOUP_VERSION="0.42.6"
COPY_VERSION="1.2.0"
MKDIR_VERSION="1.2.0"
PARSE_MODULES_VERSION="1.2.0"
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.42.5"
SOUP_VERSION="0.42.6"
COPY_VERSION="1.2.0"
MKDIR_VERSION="1.2.0"
PARSE_MODULES_VERSION="1.2.0"
Expand Down
2 changes: 1 addition & 1 deletion scripts/windows/install.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ SET ScriptsDir=%~dp0
SET RootDir=%ScriptsDir%..\..
SET OutDir=%RootDir%\out

SET SOUP_VERSION=0.42.5
SET SOUP_VERSION=0.42.6

pushd %OutDir%\release
msiexec /package soup-build-%SOUP_VERSION%-windows-x64.msi /passive
Expand Down
2 changes: 1 addition & 1 deletion scripts/windows/release.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ SET RunDir=%OutDir%/run
SET CodeDir=%RootDir%/code
SET InstallerDir=%CodeDir%/installer/soup-installer

SET SOUP_VERSION=0.42.5
SET SOUP_VERSION=0.42.6

REM - Build MSI Installer
echo msbuild %InstallerDir% -p:Configuration=Release
Expand Down
2 changes: 1 addition & 1 deletion scripts/windows/sign-installer.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ SET ScriptsDir=%~dp0
SET RootDir=%ScriptsDir%..\..
SET OutDir=%RootDir%\out

SET SOUP_VERSION=0.42.5
SET SOUP_VERSION=0.42.6

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

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 @@ -13,7 +13,7 @@ SET ConfigHash=Oltq7cGwk0Rbgy1I-3mCMDDE5yM

SET PKG_OWNER=mwasplund

SET SOUP_VERSION=0.42.5
SET SOUP_VERSION=0.42.6
SET COPY_VERSION=1.2.0
SET MKDIR_VERSION=1.2.0
SET PARSE_MODULES_VERSION=1.2.0
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.42.5
SET SOUP_VERSION=0.42.6
SET COPY_VERSION=1.2.0
SET MKDIR_VERSION=1.2.0
SET PARSE_MODULES_VERSION=1.2.0
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.42.5
SET SOUP_VERSION=0.42.6
SET COPY_VERSION=1.2.0
SET MKDIR_VERSION=1.2.0
SET PARSE_MODULES_VERSION=1.2.0
Expand Down
Loading