Skip to content

Commit 49cc18f

Browse files
authored
Release 1.4 (#11677)
1 parent ef91f3f commit 49cc18f

File tree

13 files changed

+146
-19
lines changed

13 files changed

+146
-19
lines changed

NuGet.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<packageSources>
44
<add key="NuGet" value="https://api.nuget.org/v3/index.json" />
55
<!-- This feed should not be used when shipping on NuGet. It should just be used in the dev branch while dependencies are not available on NuGet.org -->
6-
<!--<add key="OrchardCore" value="https://nuget.cloudsmith.io/orchardcore/preview/v3/index.json" />-->
6+
<!--add key="OrchardCore" value="https://nuget.cloudsmith.io/orchardcore/preview/v3/index.json" /-->
77
</packageSources>
88
<disabledPackageSources />
99
</configuration>

mkdocs.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,7 @@ nav:
232232
- Owners: docs/resources/owners/README.md
233233
- Workshops: docs/resources/workshops/README.md
234234
- Releases:
235+
- 1.4.0: docs/releases/1.4.0.md
235236
- 1.3.0: docs/releases/1.3.0.md
236237
- 1.2.2: docs/releases/1.2.2.md
237238
- 1.2.1: docs/releases/1.2.1.md

src/OrchardCore.Build/Dependencies.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
<PackageManagement Include="NodaTime" Version="3.1.0" />
4343
<PackageManagement Include="OpenIddict.AspNetCore" Version="3.1.1" />
4444
<PackageManagement Include="OpenIddict.Core" Version="3.1.1" />
45-
<PackageManagement Include="OrchardCore.Translations.All" Version="1.3.0" />
45+
<PackageManagement Include="OrchardCore.Translations.All" Version="1.4.0" />
4646
<PackageManagement Include="PdfPig" Version="0.1.6" />
4747
<PackageManagement Include="Serilog.AspNetCore" Version="5.0.0" />
4848
<PackageManagement Include="Shortcodes" Version="1.3.3" />

src/OrchardCore.Build/OrchardCore.Commons.props

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

55
<PropertyGroup>
66
<VersionPrefix>1.4.0</VersionPrefix>
7-
<VersionSuffix>preview</VersionSuffix>
7+
<VersionSuffix></VersionSuffix>
88
<VersionSuffix Condition="'$(VersionSuffix)'!='' AND '$(BuildNumber)' != ''">$(VersionSuffix)-$(BuildNumber)</VersionSuffix>
99
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
1010
<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 = "1.3.0";
8+
public const string OrchardCoreVersion = "1.4.0";
99

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

src/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,14 +58,14 @@ Orchard Core CMS supports all major site building strategies:
5858

5959
## Status
6060

61-
The latest released version of Orchard Core is `1.3.0`.
62-
The release notes can be found on <https://github.com/OrchardCMS/OrchardCore/releases/tag/v1.3.0>
61+
The latest released version of Orchard Core is `1.4.0`.
62+
The release notes can be found on <https://github.com/OrchardCMS/OrchardCore/releases/tag/v1.4.0>
6363

6464
Here is a more detailed [roadmap](https://github.com/OrchardCMS/OrchardCore/wiki/Roadmap).
6565

6666
## Getting Started
6767

68-
- Clone the repository using the command `git clone https://github.com/OrchardCMS/OrchardCore.git` and checkout the `master` branch for the latest release, or the `dev` branch for the cutting-edge version.
68+
- Clone the repository using the command `git clone https://github.com/OrchardCMS/OrchardCore.git` and checkout the `main` branch for the latest release, or the `dev` branch for the cutting-edge version.
6969

7070
- Watch the ASP.NET Community Standup video where Orchard Core was demonstrated: <https://www.youtube.com/watch?v=HeDjv3blBjQ&t=2246s&list=PL1rZQsJPBU2StolNg0aqvQswETPcYnNKL&index=24>
7171

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

Lines changed: 5 additions & 5 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 -i OrchardCore.ProjectTemplates::1.3.0
12+
dotnet new -i OrchardCore.ProjectTemplates::1.4.0
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 -i OrchardCore.ProjectTemplates::1.3.0-* --nuget-source https://nuget.cloudsmith.io/orchardcore/preview/v3/index.json
18+
dotnet new -i OrchardCore.ProjectTemplates::1.4.0-* --nuget-source https://nuget.cloudsmith.io/orchardcore/preview/v3/index.json
1919
```
2020

2121
## Create a new website
@@ -25,7 +25,7 @@ dotnet new -i OrchardCore.ProjectTemplates::1.3.0-* --nuget-source https://nuget
2525
#### Generate an Orchard Cms Web Application
2626

2727
!!! warning
28-
Due to a bug in the current published version, the following `dotnet new` commands will require the extra argument `--orchard-version 1.3.0`. For instance, instead of typing `dotnet new occms` use `dotnet new occms --orchard-version 1.3.0`
28+
Due to a bug in the current published version, the following `dotnet new` commands will require the extra argument `--orchard-version 1.4.0`. For instance, instead of typing `dotnet new occms` use `dotnet new occms --orchard-version 1.4.0`
2929

3030
```CMD
3131
dotnet new occms
@@ -47,7 +47,7 @@ Options:
4747
4848
-ov|--orchard-version Specifies which version of Orchard Core packages to use.
4949
string - Optional
50-
Default: 1.3.0
50+
Default: 1.4.0
5151
```
5252

5353
Logging can be ignored with this command:
@@ -140,7 +140,7 @@ Options:
140140
141141
-ov|--orchard-version Specifies which version of Orchard Core packages to use.
142142
string - Optional
143-
Default: 1.3.0
143+
Default: 1.4.0
144144
```
145145

146146
```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 -i OrchardCore.ProjectTemplates::1.3.0-*```
22+
```dotnet new -i OrchardCore.ProjectTemplates::1.4.0-*```
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 1.3.0-*```
43+
```dotnet add .\MyModule\MyModule.csproj package OrchardCore.Admin --version 1.4.0-*```
4444

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

4848
## Adding our controller and views
4949

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 -i OrchardCore.ProjectTemplates::1.3.0-*```
16+
```dotnet new -i OrchardCore.ProjectTemplates::1.4.0-*```
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/). You can install the latest stable release of the templates using this command:
2020

21-
```dotnet new -i OrchardCore.ProjectTemplates::1.3.0-*```
21+
```dotnet new -i OrchardCore.ProjectTemplates::1.4.0-*```
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)