From 964b73cd3671b6d701367d4d62b47916ddb91b9f Mon Sep 17 00:00:00 2001 From: Ryan Pavlik Date: Fri, 6 Dec 2019 22:14:07 -0600 Subject: OpenXR 1.0.5 release (6-December-2019) Patch release for the 1.0 series. This release primarily contains extension reservations and small specification clarifications/fixes. ### GitHub Pull Requests These had been integrated into the public repo incrementally. - Loader tests - #147 - Small bugfix and output extension ### Internal issues - Registry - Reserve Microsoft extension numbers (Internal MR 1613) --- .appveyor.yml | 2 +- CHANGELOG.SDK.md | 19 ++++++++++++++++ include/openxr/openxr.h | 2 +- specification/registry/xr.xml | 51 ++++++++++++++++++++++++++++++++++++++++++- src/CMakeLists.txt | 42 +++++++++++++++++++++++++++++++++++ 5 files changed, 113 insertions(+), 3 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 2a530c5..2f97dad 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -1,4 +1,4 @@ -version: 0.90.1.{build} +version: 1.0.5.{build} image: Visual Studio 2017 diff --git a/CHANGELOG.SDK.md b/CHANGELOG.SDK.md index 2abb759..2e89d66 100644 --- a/CHANGELOG.SDK.md +++ b/CHANGELOG.SDK.md @@ -13,6 +13,25 @@ along with any public pull requests that have been accepted. In this repository in particular, since it is primarily software, pull requests may be integrated as they are accepted even between periodic updates. +## OpenXR 1.0.5 release (6-December-2019) + +Patch release for the 1.0 series. + +This release primarily contains extension reservations and small specification +clarifications/fixes. + +### GitHub Pull Requests + +These had been integrated into the public repo incrementally. + +- Loader tests + - #147 - Small bugfix and output extension + +### Internal issues + +- Registry + - Reserve Microsoft extension numbers (Internal MR 1613) + ## OpenXR 1.0.4 release (21-November-2019) Patch release for the 1.0 series. diff --git a/include/openxr/openxr.h b/include/openxr/openxr.h index 8078888..9ac19dc 100644 --- a/include/openxr/openxr.h +++ b/include/openxr/openxr.h @@ -35,7 +35,7 @@ extern "C" { ((((major) & 0xffffULL) << 48) | (((minor) & 0xffffULL) << 32) | ((patch) & 0xffffffffULL)) // OpenXR current version number. -#define XR_CURRENT_API_VERSION XR_MAKE_VERSION(1, 0, 4) +#define XR_CURRENT_API_VERSION XR_MAKE_VERSION(1, 0, 5) #define XR_VERSION_MAJOR(version) (uint16_t)(((uint64_t)(version) >> 48)& 0xffffULL) #define XR_VERSION_MINOR(version) (uint16_t)(((uint64_t)(version) >> 32) & 0xffffULL) diff --git a/specification/registry/xr.xml b/specification/registry/xr.xml index 14b13f9..ca6654f 100644 --- a/specification/registry/xr.xml +++ b/specification/registry/xr.xml @@ -113,7 +113,7 @@ maintained in the master branch of the Khronos OpenXR GitHub project. updates them automatically by processing a line at a time. --> // OpenXR current version number. -#define XR_CURRENT_API_VERSION XR_MAKE_VERSION(1, 0, 4) +#define XR_CURRENT_API_VERSION XR_MAKE_VERSION(1, 0, 5)