Skip to content

Commit 1e667d2

Browse files
authored
Release 2.1.4 (#17375)
1 parent 296e97a commit 1e667d2

File tree

12 files changed

+21
-15
lines changed

12 files changed

+21
-15
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Nightly (`main`):
2525
[![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)
2626
[![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/)
2727

28-
## Project Status: v2.1.3
28+
## Project Status: v2.1.4
2929

3030
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.
3131

mkdocs.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -273,6 +273,7 @@ nav:
273273
- Owners: resources/owners/README.md
274274
- Workshops: resources/workshops/README.md
275275
- Releases:
276+
- 2.1.4: releases/2.1.4.md
276277
- 2.1.3: releases/2.1.3.md
277278
- 2.1.2: releases/2.1.2.md
278279
- 2.1.1: releases/2.1.1.md

src/OrchardCore.Build/OrchardCore.Commons.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<LangVersion>12.0</LangVersion>
5-
<VersionPrefix>2.1.3</VersionPrefix>
5+
<VersionPrefix>2.1.4</VersionPrefix>
66
<VersionSuffix>preview</VersionSuffix>
77
<VersionSuffix Condition="'$(VersionSuffix)'!='' AND '$(BuildNumber)' != ''">$(VersionSuffix)-$(BuildNumber)</VersionSuffix>
88
<WarningsNotAsErrors>612,618</WarningsNotAsErrors>

src/OrchardCore/OrchardCore.Abstractions/Modules/Manifest/ManifestConstants.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ public static class ManifestConstants
55
{
66
public const string OrchardCoreTeam = "The Orchard Core Team";
77

8-
public const string OrchardCoreVersion = "2.1.3";
8+
public const string OrchardCoreVersion = "2.1.4";
99

1010
public const string OrchardCoreWebsite = "https://orchardcore.net";
1111

src/docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Orchard Core CMS supports all major site building strategies:
5858

5959
## Status
6060

61-
The latest released version of Orchard Core is `2.1.3`. The release notes can be found under [Releases](releases/2.1.3.md).
61+
The latest released version of Orchard Core is `2.1.4`. The release notes can be found under [Releases](releases/2.1.4.md).
6262

6363
## Getting Started
6464

src/docs/getting-started/templates/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ More information about `dotnet new` can be found at <https://docs.microsoft.com/
99
Once the .NET Core SDK has been installed, type the following command to install the templates for creating Orchard Core web applications:
1010

1111
```CMD
12-
dotnet new install OrchardCore.ProjectTemplates::2.1.3
12+
dotnet new install OrchardCore.ProjectTemplates::2.1.4
1313
```
1414

1515
This will use the most stable release of Orchard Core. In order to use the latest `main` branch of Orchard Core, the following command can be used:
1616

1717
```CMD
18-
dotnet new install OrchardCore.ProjectTemplates::2.1.3-* --nuget-source https://nuget.cloudsmith.io/orchardcore/preview/v3/index.json
18+
dotnet new install OrchardCore.ProjectTemplates::2.1.4-* --nuget-source https://nuget.cloudsmith.io/orchardcore/preview/v3/index.json
1919
```
2020

2121
## Create a new website
@@ -44,7 +44,7 @@ Options:
4444
4545
-ov|--orchard-version Specifies which version of Orchard Core packages to use.
4646
string - Optional
47-
Default: 2.1.3
47+
Default: 2.1.4
4848
```
4949

5050
Logging can be ignored with this command:
@@ -133,7 +133,7 @@ Options:
133133
134134
-ov|--orchard-version Specifies which version of Orchard Core packages to use.
135135
string - Optional
136-
Default: 2.1.3
136+
Default: 2.1.4
137137
```
138138

139139
```CMD

src/docs/guides/add-admin-menu/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ There are different ways to create sites and modules for Orchard Core. You can l
1919

2020
You can install the latest released templates using this command:
2121

22-
```dotnet new install OrchardCore.ProjectTemplates::2.1.3-*```
22+
```dotnet new install OrchardCore.ProjectTemplates::2.1.4-*```
2323

2424
!!! note
2525
To use the development branch of the template add `--nuget-source https://nuget.cloudsmith.io/orchardcore/preview/v3/index.json`
@@ -40,10 +40,10 @@ The next step is to reference the module from the application, by adding a proje
4040

4141
We also need a reference to the `OrchardCore.Admin` package in order to be able to implement the required interfaces:
4242

43-
```dotnet add .\MyModule\MyModule.csproj package OrchardCore.Admin --version 2.1.3-*```
43+
```dotnet add .\MyModule\MyModule.csproj package OrchardCore.Admin --version 2.1.4-*```
4444

4545
!!! note
46-
To use the development branch of the template add ` --source https://nuget.cloudsmith.io/orchardcore/preview/v3/index.json --version 2.1.3-*`
46+
To use the development branch of the template add ` --source https://nuget.cloudsmith.io/orchardcore/preview/v3/index.json --version 2.1.4-*`
4747

4848
## Adding our controller and views
4949

src/docs/guides/create-blazor-cms/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -632,7 +632,7 @@ In our `OCBlazorLib` blazor Library project, Let's enrich our `/content` page to
632632
- In `OCBlazorLib.csproj` Add a NuGet package reference to `OrchardCore.ContentManagement`
633633

634634
```dotnetcli
635-
dotnet add ./OCBlazorLib/OCBlazorLib.csproj package OrchardCore.ContentManagement --version 2.1.3
635+
dotnet add ./OCBlazorLib/OCBlazorLib.csproj package OrchardCore.ContentManagement --version 2.1.4
636636
```
637637

638638
- Add the following `using` statements in `_Imports.razor`

src/docs/guides/create-cms-application/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ There are different ways to create sites and modules for Orchard Core. You can l
1313

1414
In this guide we will use our "Code Generation Templates". You can install the latest stable release of the templates using this command:
1515

16-
```dotnet new install OrchardCore.ProjectTemplates::2.1.3-*```
16+
```dotnet new install OrchardCore.ProjectTemplates::2.1.4-*```
1717

1818
!!! note
1919
To use the development branch of the template add `--nuget-source https://nuget.cloudsmith.io/orchardcore/preview/v3/index.json`.

src/docs/guides/create-modular-application-mvc/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ There are different ways to create sites and modules for Orchard Core. You can l
1818

1919
In this guide we will use our [Code Generation Templates](../../getting-started/templates/README.md). You can install the latest stable release of the templates using this command:
2020

21-
```dotnet new install OrchardCore.ProjectTemplates::2.1.3-*```
21+
```dotnet new install OrchardCore.ProjectTemplates::2.1.4-*```
2222

2323
!!! note
2424
To use the development branch of the template add `--nuget-source https://nuget.cloudsmith.io/orchardcore/preview/v3/index.json`

0 commit comments

Comments
 (0)