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"