[meta] Release 1.10.1

This commit is contained in:
Philip Rebohle 2022-03-26 11:53:18 +01:00
parent b4efaa4ef0
commit a72463c5af
No known key found for this signature in database
GPG Key ID: C8CC613427A31C99
3 changed files with 3 additions and 3 deletions

View File

@ -1 +1 @@
1.10
1.10.1

View File

@ -1,4 +1,4 @@
project('dxvk', ['c', 'cpp'], version : 'v1.10', meson_version : '>= 0.47', default_options : [ 'cpp_std=c++17' ])
project('dxvk', ['c', 'cpp'], version : 'v1.10.1', meson_version : '>= 0.47', default_options : [ 'cpp_std=c++17' ])
cpu_family = target_machine.cpu_family()

View File

@ -128,7 +128,7 @@ namespace dxvk {
appInfo.pApplicationName = appName.c_str();
appInfo.applicationVersion = 0;
appInfo.pEngineName = "DXVK";
appInfo.engineVersion = VK_MAKE_VERSION(1, 10, 0);
appInfo.engineVersion = VK_MAKE_VERSION(1, 10, 1);
appInfo.apiVersion = VK_MAKE_VERSION(1, 1, 0);
VkInstanceCreateInfo info;