From 5a199405210405c2f649febe5083e31bcd27fc5e Mon Sep 17 00:00:00 2001 From: Mattias Karlsson Date: Tue, 8 Nov 2022 21:51:03 +0100 Subject: [PATCH] (build) Updated version and release notes --- ReleaseNotes.md | 42 ++++++++++++++++++++++++++++++++++++++++++ src/SolutionInfo.cs | 6 +++--- 2 files changed, 45 insertions(+), 3 deletions(-) diff --git a/ReleaseNotes.md b/ReleaseNotes.md index 0c186671e8..aa95cb9e37 100644 --- a/ReleaseNotes.md +++ b/ReleaseNotes.md @@ -1,3 +1,45 @@ +### New in 3.0.0 (Released 2022/11/08) + +* 4046 Add typed data context CakeTaskBuilder.Finally overload. +* 4000 Remove obsolete CakeEngine Setup/Teardown events. +* 3997 Remove obsolete Logger property from DotNetTestSettings. +* 3991 Remove obsolete DotNetCore aliases. +* 3972 Remove .NET Core 3.1 TFM. +* 3969 Update Spectre.Console to 0.45.0. +* 3949 Remove .NET 5 TFM. +* 3946 Access to ITaskSetupContext in Frosting. +* 3867 Rename WindowsFact to WindowsFactAttribute to follow best practices. +* 3722 DotNetCore -> DotNet Rename Missed Objects. +* 4047 Add typed CakeTaskBuilder / TaskOf() to easier work with typed data context. +* 4028 Add GitLab CI SetEnvironmentVariable Command. +* 4019 Add support for TeamCity build status message. +* 4018 Add Support For TeamCity Statistics. +* 4011 Add GitHub Actions SetStepSummary Command. +* 4009 Add GitHub Actions SetOutputParameter Command. +* 3950 Add .NET 7 Support. +* 3328 Frosting: Support criteria description. +* 2863 Add support for GitHub Action workflow commands. +* 2470 Call multiple tasks from CLI and pass them to RunTarget. +* 1146 Add OutputDirectory property for Chocolatey Aliases. +* 4060 Update Microsoft.NETCore.Platforms to 7.0.0. +* 4059 Update System.Reflection.Metadata to 7.0.0. +* 4058 Update System.Collections.Immutable to 7.0.0. +* 4057 Update Microsoft.Extensions.DependencyInjection to 7.0.0. +* 4055 Add column to summary to include skip reason. +* 4052 Update Basic.Reference.Assemblies.* to 1.4.1. +* 4050 Overhaul Chocolatey Cake aliases. +* 4044 Overload missing for IsDependeeOf accepting a CakeTaskBuilder object. +* 4038 Add missing MSBuildSettings to DotNetRunSettings. +* 4036 Add missing MSBuildSettings to DotNetTestSettings. +* 4032 Add additional settings for ILMerge. +* 4020 Update Basic.Reference.Assemblies.* to 1.4.0. +* 4016 Update Microsoft.CodeAnalysis.CSharp.Scripting to 4.4.0-4.final. +* 4006 Add missing GitVersion command line options. +* 3124 EscapedBranchName is not supported by GitVersion.CommandLine. +* 4023 Update supported versions of Cake. +* 4034 DotNetMSBuildSettings ArgumentCustomization is not called with all DotNet* aliases. +* 4030 GitLab CI runner tags are not split correctly. + ### New in 2.3.0 (Released 2022/10/14) * 3947 Easier Way to Read Process Output?. diff --git a/src/SolutionInfo.cs b/src/SolutionInfo.cs index dfccd8b979..b82b629f13 100644 --- a/src/SolutionInfo.cs +++ b/src/SolutionInfo.cs @@ -10,7 +10,7 @@ using System.Reflection; [assembly: AssemblyProduct("Cake")] -[assembly: AssemblyVersion("2.3.0.0")] -[assembly: AssemblyFileVersion("2.3.0.0")] -[assembly: AssemblyInformationalVersion("2.3.0-beta.1+0.Branch.release-2.3.0.Sha.c4a384c17133aec06e40e0771ae4795313bfc20f")] +[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: AssemblyCopyright("Copyright (c) .NET Foundation and Contributors")]