Skip to content

Commit b650606

Browse files
committed
6.0.1-rc-005
peachpie v1.0.23
1 parent 159b478 commit b650606

7 files changed

Lines changed: 9 additions & 9 deletions

File tree

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<!-- common version -->
1111
<VersionFileContent>$([System.IO.File]::ReadAllText($(MSBuildThisFileDirectory)wordpress/wp-includes/version.php) )</VersionFileContent>
1212
<VersionPrefix Condition=" '$(VersionPrefix)'=='' ">$([System.Text.RegularExpressions.Regex]::Match($(VersionFileContent), "\$wp_version\s*=\s*'([0-9\.]+)';").Groups.get_Item(1) )</VersionPrefix>
13-
<VersionSuffix Condition=" '$(VersionSuffix)'=='' ">rc-004</VersionSuffix>
13+
<VersionSuffix Condition=" '$(VersionSuffix)'=='' ">rc-005</VersionSuffix>
1414
<!--PeachpieVersion> specified in global.json </PeachpieVersion-->
1515

1616
<!-- metadata generation -->
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!-- This file has been generated. -->
22
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3-
<Import Project="Sdk.props" Sdk="Peachpie.NET.Sdk" Version="1.0.22" />
3+
<Import Project="Sdk.props" Sdk="Peachpie.NET.Sdk" Version="1.0.23" />
44
<PropertyGroup>
5-
<WpDotNetVersion Condition=" '$(WpDotNetVersion)'=='' ">6.0.1-rc-004</WpDotNetVersion>
5+
<WpDotNetVersion Condition=" '$(WpDotNetVersion)'=='' ">6.0.1-rc-005</WpDotNetVersion>
66
</PropertyGroup>
77
</Project>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<!-- This file has been generated. -->
22
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3-
<Import Project="Sdk.targets" Sdk="Peachpie.NET.Sdk" Version="1.0.22" />
3+
<Import Project="Sdk.targets" Sdk="Peachpie.NET.Sdk" Version="1.0.23" />
44
</Project>

docs/build-php-plugin.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,14 +53,14 @@ Project file is an XML file with the following content:
5353

5454
> *MyHelloDollyPlugin.msbuildproj:*
5555
```xml
56-
<Project Sdk="PeachPied.WordPress.Build.Plugin/5.9.3-rc-002">
56+
<Project Sdk="PeachPied.WordPress.Build.Plugin/6.0.1-rc-005">
5757

5858
</Project>
5959
```
6060

6161
For most cases, the project file does not specify anything else as all the properties are defined by default in the Sdk. In case a build property or a build item needs to be altered, add it to your project file.
6262

63-
Note the project file specifies a version after the slash, i.e. `"/5.9.3-rc-002"`. This corresponds to the version of *PeachPied.WordPress.** packages which should be identical across all your application.
63+
Note the project file specifies a version after the slash, i.e. `"/6.0.1-rc-005"`. This corresponds to the version of *PeachPied.WordPress.** packages which should be identical across all your application.
6464

6565
## Build the plugin
6666

docs/build-php-theme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Project file is an XML file with the following content:
3636
</Project>
3737
```
3838

39-
Note the project file specifies a version after the slash, i.e. `"/5.9.3-rc-002"`. This corresponds to the version of *PeachPied.WordPress.** packages which should be identical across all your application.
39+
Note the project file specifies a version after the slash, i.e. `"/6.0.1-rc-005"`. This corresponds to the version of *PeachPied.WordPress.** packages which should be identical across all your application.
4040

4141
## Build the theme
4242

docs/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Open or create an ASP NET Core application, version 3.0 or newer.
2020
Add a package reference to [`"Peachpied.WordPress.AspNetCore"`](https://www.nuget.org/packages/PeachPied.WordPress.AspNetCore/) (note it is a **pre-release** package):
2121

2222
```shell
23-
dotnet add package PeachPied.WordPress.AspNetCore --version 5.9.3-rc-002
23+
dotnet add package PeachPied.WordPress.AspNetCore --version 6.0.1-rc-005
2424
```
2525

2626
Add the WordPress middleware within your request pipeline, in the `Configure` startup method:

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"msbuild-sdks": {
3-
"Peachpie.NET.Sdk": "1.0.22"
3+
"Peachpie.NET.Sdk": "1.0.23"
44
}
55
}

0 commit comments

Comments
 (0)