Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Wouterdek committed Nov 14, 2020
1 parent 2c950f9 commit 717ada0
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 12 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -302,4 +302,5 @@ __pycache__/
log.txt
_site/

!/ExampleShaderEditorApp/Resources/Models/*.obj
!/ExampleShaderEditorApp/Resources/Models/*.obj
NuGet/nuget.exe
2 changes: 1 addition & 1 deletion NodeNetwork/NodeNetwork.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<UseWPF>true</UseWPF>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>5.0.0</Version>
<Version>5.1.0</Version>
<Authors>Wouter De Keersmaecker</Authors>
<PackageTags>wpf reactiveui node network editor node-editor graph</PackageTags>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
Expand Down
4 changes: 2 additions & 2 deletions NodeNetwork/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("5.0.0.0")]
[assembly: AssemblyFileVersion("5.0.0.0")]
[assembly: AssemblyVersion("5.1.0.0")]
[assembly: AssemblyFileVersion("5.1.0.0")]
2 changes: 1 addition & 1 deletion NodeNetworkToolkit/NodeNetworkToolkit.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<UseWPF>true</UseWPF>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>5.0.0</Version>
<Version>5.1.0</Version>
<Authors>Wouter De Keersmaecker</Authors>
<PackageTags>wpf reactiveui node network editor node-editor graph</PackageTags>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
Expand Down
4 changes: 2 additions & 2 deletions NodeNetworkToolkit/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("5.0.0.0")]
[assembly: AssemblyFileVersion("5.0.0.0")]
[assembly: AssemblyVersion("5.1.0.0")]
[assembly: AssemblyFileVersion("5.1.0.0")]
10 changes: 5 additions & 5 deletions NuGet/publish.ps1
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
$version = "4.3.0"
$version = "5.1.0"

if (![System.IO.File]::Exists("nuget.exe")) {
Invoke-WebRequest -Uri "https://dist.nuget.org/win-x86-commandline/latest/nuget.exe" -OutFile "nuget.exe"
}

Write-Output ("Push NodeNetwork " + $version + " to NuGet? (Didn't forget version bump?)")
Read-Host
nuget.exe push ("../NodeNetwork/bin/Release/NodeNetwork." + $version + ".nupkg") $args[0] -Source https://api.nuget.org/v3/index.json
nuget.exe push ("../NodeNetworkToolkit/bin/Release/NodeNetworkToolkit." + $version + ".nupkg") $args[0] -Source https://api.nuget.org/v3/index.json
nuget.exe push ("../NodeNetwork/bin/Release/NodeNetwork." + $version + ".symbols.nupkg") $args[0] -source https://nuget.smbsrc.net/
nuget.exe push ("../NodeNetworkToolkit/bin/Release/NodeNetworkToolkit." + $version + ".symbols.nupkg") $args[0] -source https://nuget.smbsrc.net/
./nuget.exe push ("../NodeNetwork/bin/Release/NodeNetwork." + $version + ".nupkg") $args[0] -Source https://api.nuget.org/v3/index.json
./nuget.exe push ("../NodeNetworkToolkit/bin/Release/NodeNetworkToolkit." + $version + ".nupkg") $args[0] -Source https://api.nuget.org/v3/index.json
./nuget.exe push ("../NodeNetwork/bin/Release/NodeNetwork." + $version + ".symbols.nupkg") $args[0] -source https://nuget.smbsrc.net/
./nuget.exe push ("../NodeNetworkToolkit/bin/Release/NodeNetworkToolkit." + $version + ".symbols.nupkg") $args[0] -source https://nuget.smbsrc.net/

0 comments on commit 717ada0

Please sign in to comment.