From fcec7e5ca204cf13f0763d4ffd494ece3296cf31 Mon Sep 17 00:00:00 2001 From: Mike Alhayek Date: Wed, 25 Sep 2024 15:30:19 -0700 Subject: [PATCH] Release 2.0.1 (#16792) --- README.md | 4 ++-- mkdocs.yml | 1 + .../Modules/Manifest/ManifestConstants.cs | 2 +- src/docs/README.md | 2 +- src/docs/getting-started/templates/README.md | 8 ++++---- src/docs/guides/add-admin-menu/README.md | 6 +++--- src/docs/guides/create-blazor-cms/README.md | 2 +- src/docs/guides/create-cms-application/README.md | 2 +- .../guides/create-modular-application-mvc/README.md | 2 +- src/docs/guides/decoupled-cms/README.md | 2 +- src/docs/releases/2.0.1.md | 13 +++++++++++++ 11 files changed, 29 insertions(+), 15 deletions(-) create mode 100644 src/docs/releases/2.0.1.md diff --git a/README.md b/README.md index 64d6360175d..9c898313790 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Orchard Core consists of two distinct projects: ## Build Status -Stable (`release/2.0.0`): +Stable (`release/2.0.1`): [![Build status](https://github.com/OrchardCMS/OrchardCore/actions/workflows/release_ci.yml/badge.svg)](https://github.com/OrchardCMS/OrchardCore/actions?query=workflow%3A%22Release+-+CI%22) [![NuGet](https://img.shields.io/nuget/v/OrchardCore.Application.Cms.Targets.svg)](https://www.nuget.org/packages/OrchardCore.Application.Cms.Targets) @@ -24,7 +24,7 @@ Nightly (`main`): [![Build status](https://github.com/OrchardCMS/OrchardCore/actions/workflows/preview_ci.yml/badge.svg)](https://github.com/OrchardCMS/OrchardCore/actions?query=workflow%3A%22Preview+-+CI%22) [![Cloudsmith](https://api-prd.cloudsmith.io/badges/version/orchardcore/preview/nuget/OrchardCore.Application.Cms.Targets/latest/x/?render=true&badge_token=gAAAAABey9hKFD_C-ZIpLvayS3HDsIjIorQluDs53KjIdlxoDz6Ntt1TzvMNJp7a_UWvQbsfN5nS7_0IbxCyqHZsjhmZP6cBkKforo-NqwrH5-E6QCrJ3D8%3D)](https://cloudsmith.io/~orchardcore/repos/preview/packages/detail/nuget/OrchardCore.Application.Cms.Targets/latest/) -## Project Status: v2.0.0 +## Project Status: v2.0.1 The software is production-ready, and capable of serving large mission-critical applications as well, and we're not aware of any fundamental bugs or missing features we deem crucial. Orchard Core continues to evolve, with each version bringing new improvements, and keeping up with the cutting-edge of .NET. diff --git a/mkdocs.yml b/mkdocs.yml index 9b78f5adb85..909f39721f6 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -273,6 +273,7 @@ nav: - Owners: resources/owners/README.md - Workshops: resources/workshops/README.md - Releases: + - 2.0.1: releases/2.0.1.md - 2.0.0: releases/2.0.0.md - 1.8.4: releases/1.8.4.md - 1.8.3: releases/1.8.3.md diff --git a/src/OrchardCore/OrchardCore.Abstractions/Modules/Manifest/ManifestConstants.cs b/src/OrchardCore/OrchardCore.Abstractions/Modules/Manifest/ManifestConstants.cs index 4992e7d5e5b..42e0757f6c4 100644 --- a/src/OrchardCore/OrchardCore.Abstractions/Modules/Manifest/ManifestConstants.cs +++ b/src/OrchardCore/OrchardCore.Abstractions/Modules/Manifest/ManifestConstants.cs @@ -5,7 +5,7 @@ public static class ManifestConstants { public const string OrchardCoreTeam = "The Orchard Core Team"; - public const string OrchardCoreVersion = "2.0.0"; + public const string OrchardCoreVersion = "2.0.1"; public const string OrchardCoreWebsite = "https://orchardcore.net"; diff --git a/src/docs/README.md b/src/docs/README.md index cd2bfc6035c..a6f3a5b3f9f 100644 --- a/src/docs/README.md +++ b/src/docs/README.md @@ -58,7 +58,7 @@ Orchard Core CMS supports all major site building strategies: ## Status -The latest released version of Orchard Core is `2.0.0`. The release notes can be found under [Releases](releases/2.0.0.md). +The latest released version of Orchard Core is `2.0.1`. The release notes can be found under [Releases](releases/2.0.1.md). ## Getting Started diff --git a/src/docs/getting-started/templates/README.md b/src/docs/getting-started/templates/README.md index 5c81b6d42e3..a742968c205 100644 --- a/src/docs/getting-started/templates/README.md +++ b/src/docs/getting-started/templates/README.md @@ -9,13 +9,13 @@ More information about `dotnet new` can be found at - + ``` diff --git a/src/docs/releases/2.0.1.md b/src/docs/releases/2.0.1.md new file mode 100644 index 00000000000..abaf38d2d65 --- /dev/null +++ b/src/docs/releases/2.0.1.md @@ -0,0 +1,13 @@ +# Orchard Core 2.0.1 + +Release date: September 25, 2024. + +This release includes critical bug fixes to enhance stability and performance. + +## What's Changed +* [release/2.0] Remove unnecessary restrictions on changes to "own user" roles by @github-actions in https://github.com/OrchardCMS/OrchardCore/pull/16790 +* [release/2.0] Don't save content items on get by @github-actions in https://github.com/OrchardCMS/OrchardCore/pull/16789 +* [release/2.0] Fix ContentPartFieldDefinition Settings.ToObject Deserialization by @github-actions in https://github.com/OrchardCMS/OrchardCore/pull/16788 +* [release/2.0] Fix NRE when the user set their time zone as the site's (Lombiq Technologies: OCORE-200) by @github-actions in https://github.com/OrchardCMS/OrchardCore/pull/16794 + +**Full Changelog**: https://github.com/OrchardCMS/OrchardCore/compare/v2.0.0...v2.0.1