Skip to content

Commit 8e090d3

Browse files
Release 2.0.0 (#16427)
--------- Co-authored-by: Sébastien Ros <[email protected]>
1 parent f25c461 commit 8e090d3

File tree

23 files changed

+777
-29
lines changed

23 files changed

+777
-29
lines changed

Directory.Packages.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
<PackageVersion Include="OpenIddict.Validation.AspNetCore" Version="5.7.0" />
7272
<PackageVersion Include="OpenIddict.Validation.DataProtection" Version="5.7.0" />
7373
<PackageVersion Include="OpenIddict.Validation.SystemNetHttp" Version="5.7.0" />
74-
<PackageVersion Include="OrchardCore.Translations.All" Version="1.8.0" />
74+
<PackageVersion Include="OrchardCore.Translations.All" Version="2.0.0" />
7575
<PackageVersion Include="PdfPig" Version="0.1.8" />
7676
<PackageVersion Include="Serilog.AspNetCore" Version="8.0.2" />
7777
<PackageVersion Include="Shortcodes" Version="1.3.4" />

NuGet.config

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,25 @@
33
<packageSources>
44
<clear />
55
<add key="NuGet" value="https://api.nuget.org/v3/index.json" />
6-
<!-- 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+
<!--
7+
This feed is intended for development purposes only and should not be used when publishing to NuGet.
8+
It is meant to be utilized exclusively in the dev branch while certain dependencies are unavailable on NuGet.org.
9+
10+
As multiple sources are being used, be sure to uncomment the 'packageSourceMapping' section below.
11+
-->
712
<!-- add key="OrchardCore" value="https://nuget.cloudsmith.io/orchardcore/preview/v3/index.json" /-->
813
</packageSources>
14+
15+
<!--
16+
<packageSourceMapping>
17+
<packageSource key="OrchardCore">
18+
<package pattern="OrchardCore.*" />
19+
</packageSource>
20+
<packageSource key="NuGet">
21+
<package pattern="*" />
22+
</packageSource>
23+
</packageSourceMapping>
24+
-->
25+
926
<disabledPackageSources />
1027
</configuration>

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Orchard Core consists of two distinct projects:
1313

1414
## Build Status
1515

16-
Stable (`release/1.8.4`):
16+
Stable (`release/2.0.0`):
1717

1818
[![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)
1919
[![NuGet](https://img.shields.io/nuget/v/OrchardCore.Application.Cms.Targets.svg)](https://www.nuget.org/packages/OrchardCore.Application.Cms.Targets)
@@ -23,7 +23,7 @@ Nightly (`main`):
2323
[![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)
2424
[![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/)
2525

26-
## Project Status: v1.8.4
26+
## Project Status: v2.0.0
2727

2828
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.
2929

mkdocs.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ validation:
5454
# Add files here that are intentionally not in the navigation and thus omitted_files shouldn't warn about them.
5555
not_in_nav: |
5656
samples/
57-
releases/2.0.0.md
57+
releases/2.1.0.md
5858
5959
# Extensions
6060
markdown_extensions:
@@ -271,6 +271,7 @@ nav:
271271
- Owners: resources/owners/README.md
272272
- Workshops: resources/workshops/README.md
273273
- Releases:
274+
- 2.0.0: releases/2.0.0.md
274275
- 1.8.4: releases/1.8.4.md
275276
- 1.8.3: releases/1.8.3.md
276277
- 1.8.2: releases/1.8.2.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.0.0</VersionPrefix>
5+
<VersionPrefix>2.1.0</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 = "1.8.4";
8+
public const string OrchardCoreVersion = "2.0.0";
99

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

src/Templates/OrchardCore.ProjectTemplates/content/OrchardCore.Templates.Cms.Module/.template.config/dotnetcli.host.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@
1212
},
1313
"usageExamples": [
1414
"--framework net8.0",
15-
"--orchard-version 1.8.4"
15+
"--orchard-version 2.0.0"
1616
]
1717
}

src/Templates/OrchardCore.ProjectTemplates/content/OrchardCore.Templates.Cms.Module/.template.config/template.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"datatype": "string",
4646
"description": "Specifies which version of Orchard Core packages to use.",
4747
"replaces": "$(TemplateOrchardPackageVersion)",
48-
"defaultValue": "1.8.4"
48+
"defaultValue": "2.0.0"
4949
}
5050
},
5151
"sources": [

src/Templates/OrchardCore.ProjectTemplates/content/OrchardCore.Templates.Cms.Web/.template.config/dotnetcli.host.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@
1717
"usageExamples": [
1818
"--framework net8.0",
1919
"--logger none",
20-
"--orchard-version 1.8.4"
20+
"--orchard-version 2.0.0"
2121
]
2222
}

src/Templates/OrchardCore.ProjectTemplates/content/OrchardCore.Templates.Cms.Web/.template.config/template.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
"datatype": "string",
5252
"description": "Specifies which version of Orchard Core packages to use.",
5353
"replaces": "$(TemplateOrchardPackageVersion)",
54-
"defaultValue": "1.8.4"
54+
"defaultValue": "2.0.0"
5555
},
5656
"UseNLog": {
5757
"type": "computed",

0 commit comments

Comments
 (0)