Skip to content

Commit ae883d6

Browse files
committed
Increment version
1 parent 5e76345 commit ae883d6

File tree

7 files changed

+11
-10
lines changed

7 files changed

+11
-10
lines changed

Assets/MRTK/Tests/EditModeTests/Core/Utilities/BuildAndDeploy/UwpAppxBuildToolsTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class UwpAppxBuildToolsTest
2626
xmlns:mobile='http://schemas.microsoft.com/appx/manifest/mobile/windows10'
2727
IgnorableNamespaces='uap uap2 uap3 uap4 mp mobile iot'
2828
xmlns='http://schemas.microsoft.com/appx/manifest/foundation/windows10'>
29-
<Identity Name='Microsoft.MixedReality.Toolkit' Publisher='CN=Microsoft' Version='2.5.3.0' />
29+
<Identity Name='Microsoft.MixedReality.Toolkit' Publisher='CN=Microsoft' Version='2.5.4.0' />
3030
<mp:PhoneIdentity PhoneProductId='85c8bcd4-fbac-44ed-adf6-bfc01242a27f' PhonePublisherId='00000000-0000-0000-0000-000000000000' />
3131
<Properties>
3232
<DisplayName>MixedRealityToolkit</DisplayName>

Documentation/Contributing/Roadmap.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This document outlines the roadmap of the Mixed Reality Toolkit. Please note tha
44

55
## Current release
66

7-
[Microsoft Mixed Reality Toolkit v2.5.3](https://github.com/Microsoft/MixedRealityToolkit-Unity/releases/tag/v2.5.3)
7+
[Microsoft Mixed Reality Toolkit v2.5.4](https://github.com/Microsoft/MixedRealityToolkit-Unity/releases/tag/v2.5.4)
88

99
## Upcoming releases
1010

Documentation/ReleaseNotes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Microsoft Mixed Reality Toolkit 2.5.3 release notes
1+
# Microsoft Mixed Reality Toolkit 2.5.4 release notes
22

33
- [What's new](#whats-new)
44
- [Updating guidance](Updating.md#upgrading-to-a-new-version-of-mrtk)

Documentation/usingupm.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ To add an MRTK package, modify the dependencies section of the `Packages/manifes
4242

4343
```json
4444
"dependencies": {
45-
"com.microsoft.mixedreality.toolkit.foundation": "2.5.3",
46-
"com.microsoft.mixedreality.toolkit.tools": "2.5.3",
47-
"com.microsoft.mixedreality.toolkit.examples": "2.5.3",
45+
"com.microsoft.mixedreality.toolkit.foundation": "2.5.4",
46+
"com.microsoft.mixedreality.toolkit.tools": "2.5.4",
47+
"com.microsoft.mixedreality.toolkit.examples": "2.5.4",
4848
```
4949

5050
> [!IMPORTANT]

ProjectSettings/ProjectSettings.asset

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ PlayerSettings:
118118
16:10: 1
119119
16:9: 1
120120
Others: 1
121-
bundleVersion: 2.5.3
121+
bundleVersion: 2.5.4
122122
preloadedAssets: []
123123
metroInputSource: 0
124124
wsaTransparentSwapchain: 0
@@ -687,7 +687,7 @@ PlayerSettings:
687687
m_RenderingPath: 1
688688
m_MobileRenderingPath: 1
689689
metroPackageName: Microsoft.MixedReality.Toolkit
690-
metroPackageVersion: 2.5.3.0
690+
metroPackageVersion: 2.5.4.0
691691
metroCertificatePath: Assets/WSATestCertificate.pfx
692692
metroCertificatePassword:
693693
metroCertificateSubject: Microsoft

pipelines/config/settings.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ variables:
1111
# match (see scripts/packaging/versionmetadata.ps1)
1212
# ProjectSettings/ProjectSettings.asset: bundleVersion: x.x.x
1313
# ProjectSettings/ProjectSettings.asset: metroPackageVersion: x.x.x.0
14-
MRTKVersion: 2.5.3
14+
MRTKVersion: 2.5.4
1515
MRTKReleaseTag: '' # final version component, e.g. 'RC2.1' or empty string
1616
ToolsRepoName: mixedrealitytoolkit.build
1717
ToolsDir: $(Build.SourcesDirectory)\$(ToolsRepoName)

scripts/docs/web/version.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
function createDropdown()
22
{
33
// configurable values:
4-
var defaultTitle = "releases/2.5.3"; // title in the dropdown for the root version of the docs - alternatively put a version from the version array as a default
4+
var defaultTitle = "releases/2.5.4"; // title in the dropdown for the root version of the docs - alternatively put a version from the version array as a default
55

66
// list of all versions in the version folder
77
var versionArray = [
@@ -15,6 +15,7 @@ function createDropdown()
1515
"releases/2.5.1",
1616
"releases/2.5.2",
1717
"releases/2.5.3",
18+
"releases/2.5.4",
1819
];
1920

2021
var ignoreDefaultInVersionFolder = true;

0 commit comments

Comments
 (0)