Skip to content

Commit 8dbf53c

Browse files
committed
More version and release notes updates
1 parent 63d57fe commit 8dbf53c

File tree

4 files changed

+12
-7
lines changed

4 files changed

+12
-7
lines changed

Documentation/Contributing/Roadmap.md

+1-1
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.2](https://github.com/Microsoft/MixedRealityToolkit-Unity/releases/tag/v2.5.2)
7+
[Microsoft Mixed Reality Toolkit v2.5.3](https://github.com/Microsoft/MixedRealityToolkit-Unity/releases/tag/v2.5.3)
88

99
## Upcoming releases
1010

Documentation/ReleaseNotes.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Microsoft Mixed Reality Toolkit 2.5.2 release notes
1+
# Microsoft Mixed Reality Toolkit 2.5.3 release notes
22

33
- [What's new](#whats-new)
44
- [Updating guidance](Updating.md#upgrading-to-a-new-version-of-mrtk)
@@ -11,6 +11,10 @@
1111
1212
## What's new
1313

14+
### Fixes a regression with Oculus introduced in 2.5.2
15+
16+
2.5.2 introduced [a build issue when integrating the Oculus SDK](https://github.com/microsoft/MixedRealityToolkit-Unity/issues/9083). This release reverts that issue.
17+
1418
### Add support for OpenXR
1519

1620
Initial support for Unity's OpenXR preview package and Microsoft's Mixed Reality OpenXR package has been added. See [the MRTK/XRSDK getting started page](GettingStartedWithMRTKAndXRSDK.md), [Unity's forum post](https://forum.unity.com/threads/unity-support-for-openxr-in-preview.1023613/), or [Microsoft's documentation](https://aka.ms/openxr-unity-install) for more information.
@@ -26,7 +30,7 @@ Boundary visualizations, like the floor or walls, will now be properly configure
2630

2731
### MSBuild for Unity support
2832

29-
Support for MSBuild for Unity has been removed in the 2.5.2 release, to align with [Unity's new package guidance](https://forum.unity.com/threads/updates-to-our-terms-of-service-and-new-package-guidelines.999940/).
33+
Support for MSBuild for Unity has been removed as of the 2.5.2 release, to align with [Unity's new package guidance](https://forum.unity.com/threads/updates-to-our-terms-of-service-and-new-package-guidelines.999940/).
3034

3135
## Known issues
3236

Documentation/usingupm.md

+3-3
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.2",
46-
"com.microsoft.mixedreality.toolkit.tools": "2.5.2",
47-
"com.microsoft.mixedreality.toolkit.examples": "2.5.2",
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",
4848
```
4949

5050
> [!IMPORTANT]

scripts/docs/web/version.js

+2-1
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.2"; // 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.3"; // 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 = [
@@ -14,6 +14,7 @@ function createDropdown()
1414
"releases/2.5.0",
1515
"releases/2.5.1",
1616
"releases/2.5.2",
17+
"releases/2.5.3",
1718
];
1819

1920
var ignoreDefaultInVersionFolder = true;

0 commit comments

Comments
 (0)