diff --git a/ReleaseNotes.md b/ReleaseNotes.md index aa95cb9e37..624d7c9e52 100644 --- a/ReleaseNotes.md +++ b/ReleaseNotes.md @@ -1,3 +1,23 @@ +### New in 3.1.0 (Released 2023/07/09) + +* 4122 Call multiple tasks from CLI in Frosting. +* 4092 Add support for getting the user's home directory in the Cake Environment. +* 4184 Update Autofac to 7.0.1. +* 4183 Update System.Reflection.Metadata to 7.0.2. +* 4182 Update Basic.Reference.Assemblies.Net60/Net70 to 1.4.2. +* 4181 Update Microsoft.CodeAnalysis.CSharp.Scripting to 4.6.0. +* 4170 Update NuGet.* to v6.6.1. +* 4138 Upgrade Spectre.Console to v0.46.0. +* 4109 Add PublishReadyToRun to DotNetRestoreSettings. +* 4107 DotNetPublishSettings is missing a way to set the --os option. +* 4090 Update Microsoft.CodeAnalysis.CSharp.Scripting to v4.4.0. +* 4087 Update Newtonsoft.Json to v13.0.2. +* 4086 Update Autofac to v6.5.0. +* 4085 Update NuGet.* to v6.4.0. +* 1317 CleanDirectory does not clean readonly files. +* 4095 Fix broken link to Cake Team on CONTRIBUTING.md. +* 4128 Inconsistent determination of positional Argument when using context.Arguments versus context.Argument. + ### New in 3.0.0 (Released 2022/11/08) * 4046 Add typed data context CakeTaskBuilder.Finally overload. diff --git a/src/SolutionInfo.cs b/src/SolutionInfo.cs index b82b629f13..baad8e125f 100644 --- a/src/SolutionInfo.cs +++ b/src/SolutionInfo.cs @@ -10,7 +10,7 @@ using System.Reflection; [assembly: AssemblyProduct("Cake")] -[assembly: AssemblyVersion("3.0.0.0")] -[assembly: AssemblyFileVersion("3.0.0.0")] -[assembly: AssemblyInformationalVersion("3.0.0-beta.1+0.Branch.release-3.0.0.Sha.deaf9568275db4906a238fb28b36ede750daf8f9")] +[assembly: AssemblyVersion("3.1.0.0")] +[assembly: AssemblyFileVersion("3.1.0.0")] +[assembly: AssemblyInformationalVersion("3.1.0-beta.1+0.Branch.release-3.1.0.Sha.6a334f30ec989c44d6578a7e73843ed9f1167ca3")] [assembly: AssemblyCopyright("Copyright (c) .NET Foundation and Contributors")]