Skip to content

Commit

Permalink
Bump version to 5.212.0
Browse files Browse the repository at this point in the history
  • Loading branch information
forki committed Jul 1, 2019
1 parent 9b96533 commit 77e22ef
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 20 deletions.
5 changes: 3 additions & 2 deletions .paket/Paket.Restore.targets
Original file line number Diff line number Diff line change
Expand Up @@ -252,10 +252,11 @@
</PropertyGroup>

<ItemGroup>
<_NuspecFiles Include="$(AdjustedNuspecOutputPath)\*.$(PackageVersion).nuspec"/>
<_NuspecFiles Include="$(AdjustedNuspecOutputPath)\*.$(PackageVersion.Split(`+`)[0]).nuspec"/>
</ItemGroup>

<Exec Command='$(PaketCommand) fix-nuspecs files "@(_NuspecFiles)" project-file "$(PaketProjectFile)" ' Condition="@(_NuspecFiles) != ''" />
<Exec Condition="@(_NuspecFiles) != ''" Command='$(PaketCommand) fix-nuspecs files "@(_NuspecFiles)" project-file "$(PaketProjectFile)" ' />
<Error Condition="@(_NuspecFiles) == ''" Text='Could not find nuspec files in "$(AdjustedNuspecOutputPath)" (Version: "$(PackageVersion)"), therefore we cannot call "paket fix-nuspecs" and have to error out!' />

<ConvertToAbsolutePath Condition="@(_NuspecFiles) != ''" Paths="@(_NuspecFiles)">
<Output TaskParameter="AbsolutePaths" PropertyName="NuspecFileAbsolutePath" />
Expand Down
12 changes: 6 additions & 6 deletions src/Paket.Bootstrapper/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@
[assembly: AssemblyTitleAttribute("Paket.Bootstrapper")]
[assembly: AssemblyProductAttribute("Paket")]
[assembly: AssemblyDescriptionAttribute("A dependency manager for .NET with support for NuGet packages and git repositories.")]
[assembly: AssemblyVersionAttribute("5.211.0")]
[assembly: AssemblyFileVersionAttribute("5.211.0")]
[assembly: AssemblyInformationalVersionAttribute("5.211.0")]
[assembly: AssemblyVersionAttribute("5.212.0")]
[assembly: AssemblyFileVersionAttribute("5.212.0")]
[assembly: AssemblyInformationalVersionAttribute("5.212.0")]
namespace System {
internal static class AssemblyVersionInformation {
internal const System.String AssemblyTitle = "Paket.Bootstrapper";
internal const System.String AssemblyProduct = "Paket";
internal const System.String AssemblyDescription = "A dependency manager for .NET with support for NuGet packages and git repositories.";
internal const System.String AssemblyVersion = "5.211.0";
internal const System.String AssemblyFileVersion = "5.211.0";
internal const System.String AssemblyInformationalVersion = "5.211.0";
internal const System.String AssemblyVersion = "5.212.0";
internal const System.String AssemblyFileVersion = "5.212.0";
internal const System.String AssemblyInformationalVersion = "5.212.0";
}
}
12 changes: 6 additions & 6 deletions src/Paket.Core/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@ open System.Reflection
[<assembly: AssemblyProductAttribute("Paket")>]
[<assembly: AssemblyCompanyAttribute("Paket team")>]
[<assembly: AssemblyDescriptionAttribute("A dependency manager for .NET with support for NuGet packages and git repositories.")>]
[<assembly: AssemblyVersionAttribute("5.211.0")>]
[<assembly: AssemblyFileVersionAttribute("5.211.0")>]
[<assembly: AssemblyInformationalVersionAttribute("5.211.0")>]
[<assembly: AssemblyVersionAttribute("5.212.0")>]
[<assembly: AssemblyFileVersionAttribute("5.212.0")>]
[<assembly: AssemblyInformationalVersionAttribute("5.212.0")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "Paket.Core"
let [<Literal>] AssemblyProduct = "Paket"
let [<Literal>] AssemblyCompany = "Paket team"
let [<Literal>] AssemblyDescription = "A dependency manager for .NET with support for NuGet packages and git repositories."
let [<Literal>] AssemblyVersion = "5.211.0"
let [<Literal>] AssemblyFileVersion = "5.211.0"
let [<Literal>] AssemblyInformationalVersion = "5.211.0"
let [<Literal>] AssemblyVersion = "5.212.0"
let [<Literal>] AssemblyFileVersion = "5.212.0"
let [<Literal>] AssemblyInformationalVersion = "5.212.0"
12 changes: 6 additions & 6 deletions src/Paket/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@ open System.Reflection
[<assembly: AssemblyProductAttribute("Paket")>]
[<assembly: AssemblyCompanyAttribute("Paket team")>]
[<assembly: AssemblyDescriptionAttribute("A dependency manager for .NET with support for NuGet packages and git repositories.")>]
[<assembly: AssemblyVersionAttribute("5.211.0")>]
[<assembly: AssemblyFileVersionAttribute("5.211.0")>]
[<assembly: AssemblyInformationalVersionAttribute("5.211.0")>]
[<assembly: AssemblyVersionAttribute("5.212.0")>]
[<assembly: AssemblyFileVersionAttribute("5.212.0")>]
[<assembly: AssemblyInformationalVersionAttribute("5.212.0")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "Paket"
let [<Literal>] AssemblyProduct = "Paket"
let [<Literal>] AssemblyCompany = "Paket team"
let [<Literal>] AssemblyDescription = "A dependency manager for .NET with support for NuGet packages and git repositories."
let [<Literal>] AssemblyVersion = "5.211.0"
let [<Literal>] AssemblyFileVersion = "5.211.0"
let [<Literal>] AssemblyInformationalVersion = "5.211.0"
let [<Literal>] AssemblyVersion = "5.212.0"
let [<Literal>] AssemblyFileVersion = "5.212.0"
let [<Literal>] AssemblyInformationalVersion = "5.212.0"

0 comments on commit 77e22ef

Please sign in to comment.