diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 48e351acc4..3e75aa5b45 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,3 +1,6 @@ +#### 2.50.5 - 11.02.2016 +* Fix Platform matching bug in CPP projects - https://github.com/fsprojects/Paket/issues/1467 + #### 2.50.4 - 11.02.2016 * Fix StackOverflow from https://github.com/fsprojects/Paket/issues/1432 diff --git a/integrationtests/scenarios/i001467-cpp-native/before/MyClassLibrary/PaketTest.vcxprojtemplate b/integrationtests/scenarios/i001467-cpp-native/before/MyClassLibrary/PaketTest.vcxprojtemplate index cf28d48aad..22f6d7cbea 100644 --- a/integrationtests/scenarios/i001467-cpp-native/before/MyClassLibrary/PaketTest.vcxprojtemplate +++ b/integrationtests/scenarios/i001467-cpp-native/before/MyClassLibrary/PaketTest.vcxprojtemplate @@ -115,7 +115,7 @@ - + <__paket__cpprestsdk_v120_winapp_msvcstl_dyn_rt-dyn_targets>native\cpprestsdk.v120.winapp.msvcstl.dyn.rt-dyn diff --git a/src/Paket.Bootstrapper/Properties/AssemblyInfo.cs b/src/Paket.Bootstrapper/Properties/AssemblyInfo.cs index 933dff966c..712f533437 100644 --- a/src/Paket.Bootstrapper/Properties/AssemblyInfo.cs +++ b/src/Paket.Bootstrapper/Properties/AssemblyInfo.cs @@ -4,11 +4,11 @@ [assembly: AssemblyTitleAttribute("Paket.Bootstrapper")] [assembly: AssemblyProductAttribute("Paket")] [assembly: AssemblyDescriptionAttribute("A package dependency manager for .NET with support for NuGet packages and GitHub repositories.")] -[assembly: AssemblyVersionAttribute("2.50.4")] -[assembly: AssemblyFileVersionAttribute("2.50.4")] -[assembly: AssemblyInformationalVersionAttribute("2.50.4")] +[assembly: AssemblyVersionAttribute("2.50.5")] +[assembly: AssemblyFileVersionAttribute("2.50.5")] +[assembly: AssemblyInformationalVersionAttribute("2.50.5")] namespace System { internal static class AssemblyVersionInformation { - internal const string Version = "2.50.4"; + internal const string Version = "2.50.5"; } } diff --git a/src/Paket.Core/AssemblyInfo.fs b/src/Paket.Core/AssemblyInfo.fs index 5215fd3a75..94e277f574 100644 --- a/src/Paket.Core/AssemblyInfo.fs +++ b/src/Paket.Core/AssemblyInfo.fs @@ -5,10 +5,10 @@ open System.Reflection [] [] [] -[] -[] -[] +[] +[] +[] do () module internal AssemblyVersionInformation = - let [] Version = "2.50.4" + let [] Version = "2.50.5" diff --git a/src/Paket.PowerShell/AssemblyInfo.fs b/src/Paket.PowerShell/AssemblyInfo.fs index 30946b8f3a..abc6485fe5 100644 --- a/src/Paket.PowerShell/AssemblyInfo.fs +++ b/src/Paket.PowerShell/AssemblyInfo.fs @@ -5,10 +5,10 @@ open System.Reflection [] [] [] -[] -[] -[] +[] +[] +[] do () module internal AssemblyVersionInformation = - let [] Version = "2.50.4" + let [] Version = "2.50.5" diff --git a/src/Paket/AssemblyInfo.fs b/src/Paket/AssemblyInfo.fs index 34373efb76..a54d7810c4 100644 --- a/src/Paket/AssemblyInfo.fs +++ b/src/Paket/AssemblyInfo.fs @@ -5,10 +5,10 @@ open System.Reflection [] [] [] -[] -[] -[] +[] +[] +[] do () module internal AssemblyVersionInformation = - let [] Version = "2.50.4" + let [] Version = "2.50.5"