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";