Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
## [3.0.3] - 2019-08-29
* Fix package dependency version for subsystem registrion pacakge.

## [3.0.2] - 2019-08-29
* Release package for verification.

## [3.0.2-preview.3] - 2019-08-29
* Update to reflect changes in downstream subsystem definitions in 19.3+.
  • Loading branch information
Unity Technologies committed Aug 28, 2019
1 parent 0b5dc02 commit ef0878d
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@ All notable changes to this package will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [3.0.3] - 2019-08-29
* Fix package dependency version for subsystem registrion pacakge.

## [3.0.2] - 2019-08-29
* Release package for verification.

## [3.0.2-preview.3] - 2019-08-29
* Update to reflect changes in downstream subsystem definitions in 19.3+.

## [3.0.2-preview.2] - 2019-08-23
* Change legacy input helpers version to 1.*
* Fix documentation validation errors.
Expand Down
4 changes: 4 additions & 0 deletions Tests/StandaloneSubsystem/StandaloneSubsystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,11 @@ public override void Stop()
stopCalled.Invoke();
}

#if UNITY_2019_3_OR_NEWER
protected override void OnDestroy()
#else
public override void Destroy()
#endif
{
isRunning = false;
if (destroyCalled != null)
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "com.unity.xr.management",
"displayName": "XR Management",
"version": "3.0.2-preview.2",
"version": "3.0.3",
"unity": "2019.2",
"description": "Package to provide for simple management of XR plugins. Provides help and management for loading, initialization, settings, and build support for XR plugins.",
"keywords": [
Expand All @@ -13,12 +13,12 @@
"build"
],
"dependencies": {
"com.unity.subsystemregistration": "1.0.5"
"com.unity.subsystemregistration": "1.0.6"
},
"repository": {
"type": "git",
"url": "[email protected]:unity/xr.sdk.management.git",
"revision": "d74efda3ef2a2a17b8b95949baa14a00c8dbddee"
"revision": "89119f7ca41b3783d6d622f5594618526d933d09"
},
"samples": [
{
Expand Down

0 comments on commit ef0878d

Please sign in to comment.