From 915e31ff1fc6f9d41f37bb76983cc284deb00c28 Mon Sep 17 00:00:00 2001 From: Robert Muehsig Date: Sun, 5 Nov 2017 22:07:59 +0100 Subject: [PATCH] 0.0.6 --- Changelog.md | 10 +++++++++- buildReleaseNuGetPackages.cmd | 8 ++++---- 2 files changed, 13 insertions(+), 5 deletions(-) diff --git a/Changelog.md b/Changelog.md index c45014a..5e4e9c7 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,11 +1,19 @@ # not release + +# 0.0.6 + ElectronNET.CLI: * nuget packages are now release bits and have the correct assembly verion * Version command * better devCleanup.cmd -* Better Platform Support [Issue](https://github.com/ElectronNET/Electron.NET/issues/6) - thanks to @Petermarcu +* Better Platform Support Issue - thanks to @Petermarcu +* Start Command should now work on OSX/Linux + +ElectronNET.API: + +* Thread-Safe methods # 0.0.5 diff --git a/buildReleaseNuGetPackages.cmd b/buildReleaseNuGetPackages.cmd index e1e51ed..d13527e 100644 --- a/buildReleaseNuGetPackages.cmd +++ b/buildReleaseNuGetPackages.cmd @@ -2,11 +2,11 @@ echo "Start building Electron.NET dev stack..." echo "Restore & Build API" cd ElectronNet.API dotnet restore -dotnet build --configuration Release --force /property:Version=0.0.5 -dotnet pack /p:Version=0.0.5 --configuration Release --force --output "%~dp0artifacts" +dotnet build --configuration Release --force /property:Version=0.0.6 +dotnet pack /p:Version=0.0.6 --configuration Release --force --output "%~dp0artifacts" cd .. echo "Restore & Build API" cd ElectronNet.CLI dotnet restore -dotnet build --configuration Release --force /property:Version=0.0.5 -dotnet pack /p:Version=0.0.5 --configuration Release --force --output "%~dp0artifacts" +dotnet build --configuration Release --force /property:Version=0.0.6 +dotnet pack /p:Version=0.0.6 --configuration Release --force --output "%~dp0artifacts"