Skip to content

Commit

Permalink
Bump version to 5.242.0
Browse files Browse the repository at this point in the history
  • Loading branch information
forki committed Feb 3, 2020
1 parent b3b0ef0 commit 268ba87
Show file tree
Hide file tree
Showing 6 changed files with 36 additions and 27 deletions.
12 changes: 9 additions & 3 deletions .paket/Paket.Restore.targets
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,16 @@
<PaketBootStrapperExePath Condition=" '$(PaketBootStrapperExePath)' == '' AND Exists('$(PaketRootPath)paket.bootstrapper.exe')">$(PaketRootPath)paket.bootstrapper.exe</PaketBootStrapperExePath>
<PaketBootStrapperExePath Condition=" '$(PaketBootStrapperExePath)' == '' ">$(PaketToolsPath)paket.bootstrapper.exe</PaketBootStrapperExePath>
<PaketBootStrapperExeDir Condition=" Exists('$(PaketBootStrapperExePath)') " >$([System.IO.Path]::GetDirectoryName("$(PaketBootStrapperExePath)"))\</PaketBootStrapperExeDir>

<PaketBootStrapperCommand Condition=" '$(OS)' == 'Windows_NT' ">"$(PaketBootStrapperExePath)"</PaketBootStrapperCommand>
<PaketBootStrapperCommand Condition=" '$(OS)' != 'Windows_NT' ">$(MonoPath) --runtime=v4.0.30319 "$(PaketBootStrapperExePath)"</PaketBootStrapperCommand>

<!-- Disable automagic references for F# DotNet SDK -->
<!-- This will not do anything for other project types -->
<!-- see https://github.com/fsharp/fslang-design/blob/master/tooling/FST-1002-fsharp-in-dotnet-sdk.md -->
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
<DisableImplicitSystemValueTupleReference>true</DisableImplicitSystemValueTupleReference>

<!-- Disable Paket restore under NCrunch build -->
<PaketRestoreDisabled Condition="'$(NCrunch)' == '1'">True</PaketRestoreDisabled>

Expand Down Expand Up @@ -130,7 +136,7 @@
<!-- Parse our simple 'paket.restore.cached' json ...-->
<PaketRestoreCachedSplitObject Include="$([System.Text.RegularExpressions.Regex]::Split(`$(PaketRestoreCachedContents)`, `{|}|,`))"></PaketRestoreCachedSplitObject>
<!-- Keep Key, Value ItemGroup-->
<PaketRestoreCachedKeyValue Include="@(PaketRestoreCachedSplitObject)"
<PaketRestoreCachedKeyValue Include="@(PaketRestoreCachedSplitObject)"
Condition=" $([System.Text.RegularExpressions.Regex]::Split(`%(Identity)`, `&quot;: &quot;`).Length) &gt; 1 ">
<Key>$([System.Text.RegularExpressions.Regex]::Split(`%(Identity)`, `": "`)[0].Replace(`"`, ``).Replace(` `, ``))</Key>
<Value>$([System.Text.RegularExpressions.Regex]::Split(`%(Identity)`, `": "`)[1].Replace(`"`, ``).Replace(` `, ``))</Value>
Expand Down Expand Up @@ -163,7 +169,7 @@
<Exec Command='$(PaketBootStrapperCommand)' Condition=" '$(PaketBootstrapperStyle)' == 'classic' AND Exists('$(PaketBootStrapperExePath)') AND !(Exists('$(PaketExePath)'))" ContinueOnError="false" />
<Error Text="Stop build because of PAKET_ERROR_ON_MSBUILD_EXEC and we need a full restore (hashes don't match)" Condition=" '$(PAKET_ERROR_ON_MSBUILD_EXEC)' == 'true' AND '$(PaketRestoreRequired)' == 'true' AND '$(PaketDisableGlobalRestore)' != 'true'" />
<Exec Command='$(PaketCommand) restore' Condition=" '$(PaketRestoreRequired)' == 'true' AND '$(PaketDisableGlobalRestore)' != 'true' " ContinueOnError="false" />

<!-- Step 2 Detect project specific changes -->
<ItemGroup>
<MyTargetFrameworks Condition="'$(TargetFramework)' != '' " Include="$(TargetFramework)"></MyTargetFrameworks>
Expand Down
3 changes: 3 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
#### 5.242.0 - 2020-02-03
* Change default TFM on paket init to netcoreap31

#### 5.241.6 - 2020-01-04
* REVERT: Do only disable automagic when FSharp.Core is actually used - https://github.com/fsprojects/Paket/issues/3769

Expand Down
12 changes: 6 additions & 6 deletions src/LockFileComparer/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.241.6")>]
[<assembly: AssemblyFileVersionAttribute("5.241.6")>]
[<assembly: AssemblyInformationalVersionAttribute("5.241.6")>]
[<assembly: AssemblyVersionAttribute("5.242.0")>]
[<assembly: AssemblyFileVersionAttribute("5.242.0")>]
[<assembly: AssemblyInformationalVersionAttribute("5.242.0")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "LockFileComparer"
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.241.6"
let [<Literal>] AssemblyFileVersion = "5.241.6"
let [<Literal>] AssemblyInformationalVersion = "5.241.6"
let [<Literal>] AssemblyVersion = "5.242.0"
let [<Literal>] AssemblyFileVersion = "5.242.0"
let [<Literal>] AssemblyInformationalVersion = "5.242.0"
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.241.6")]
[assembly: AssemblyFileVersionAttribute("5.241.6")]
[assembly: AssemblyInformationalVersionAttribute("5.241.6")]
[assembly: AssemblyVersionAttribute("5.242.0")]
[assembly: AssemblyFileVersionAttribute("5.242.0")]
[assembly: AssemblyInformationalVersionAttribute("5.242.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.241.6";
internal const System.String AssemblyFileVersion = "5.241.6";
internal const System.String AssemblyInformationalVersion = "5.241.6";
internal const System.String AssemblyVersion = "5.242.0";
internal const System.String AssemblyFileVersion = "5.242.0";
internal const System.String AssemblyInformationalVersion = "5.242.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.241.6")>]
[<assembly: AssemblyFileVersionAttribute("5.241.6")>]
[<assembly: AssemblyInformationalVersionAttribute("5.241.6")>]
[<assembly: AssemblyVersionAttribute("5.242.0")>]
[<assembly: AssemblyFileVersionAttribute("5.242.0")>]
[<assembly: AssemblyInformationalVersionAttribute("5.242.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.241.6"
let [<Literal>] AssemblyFileVersion = "5.241.6"
let [<Literal>] AssemblyInformationalVersion = "5.241.6"
let [<Literal>] AssemblyVersion = "5.242.0"
let [<Literal>] AssemblyFileVersion = "5.242.0"
let [<Literal>] AssemblyInformationalVersion = "5.242.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.241.6")>]
[<assembly: AssemblyFileVersionAttribute("5.241.6")>]
[<assembly: AssemblyInformationalVersionAttribute("5.241.6")>]
[<assembly: AssemblyVersionAttribute("5.242.0")>]
[<assembly: AssemblyFileVersionAttribute("5.242.0")>]
[<assembly: AssemblyInformationalVersionAttribute("5.242.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.241.6"
let [<Literal>] AssemblyFileVersion = "5.241.6"
let [<Literal>] AssemblyInformationalVersion = "5.241.6"
let [<Literal>] AssemblyVersion = "5.242.0"
let [<Literal>] AssemblyFileVersion = "5.242.0"
let [<Literal>] AssemblyInformationalVersion = "5.242.0"

0 comments on commit 268ba87

Please sign in to comment.