From 26a5375b09ff0363fb1941945fc3e0259d4ceae5 Mon Sep 17 00:00:00 2001 From: Nice3point Date: Wed, 19 Jun 2024 21:29:23 +0300 Subject: [PATCH] Bump version --- Changelog.md | 6 ++++++ build/Build.Configuration.cs | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Changelog.md b/Changelog.md index 34414af..cc4da27 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,11 @@ +# 2.0.1 + +- Enabled EnableDynamicLoading by default for NetCore apps +- Disabled CopyLocalLockFileAssemblies for NetCore apps + # 2.0.0 + - Disabled publishing Content files by default. To enable it, set `CopyToPublishDirectory=‘Always’` or `CopyToPublishDirectory=‘PreserveNewest’`. - PreserveNewest and Always now affect whether existing files should be skipped or overwritten always - Increased major version to avoid conflicts in existing projects diff --git a/build/Build.Configuration.cs b/build/Build.Configuration.cs index 8fd14da..7451c74 100644 --- a/build/Build.Configuration.cs +++ b/build/Build.Configuration.cs @@ -1,6 +1,6 @@ sealed partial class Build { - const string Version = "2.0.0"; + const string Version = "2.0.1"; readonly AbsolutePath ArtifactsDirectory = RootDirectory / "output"; readonly AbsolutePath ChangeLogPath = RootDirectory / "Changelog.md";