From b4faf0bb3e3f6eb62920d745870422b50f8f33ab Mon Sep 17 00:00:00 2001 From: Philip Rebohle Date: Fri, 20 Dec 2024 13:37:07 +0100 Subject: [PATCH] [meta] Release 2.5.2 --- RELEASE | 2 +- meson.build | 2 +- src/dxvk/dxvk_instance.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/RELEASE b/RELEASE index 73462a5a134..f225a78adf0 100644 --- a/RELEASE +++ b/RELEASE @@ -1 +1 @@ -2.5.1 +2.5.2 diff --git a/meson.build b/meson.build index 5555654bc48..29101e732fc 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,4 @@ -project('dxvk', ['c', 'cpp'], version : 'v2.5.1', meson_version : '>= 0.58', default_options : [ 'cpp_std=c++17', 'b_vscrt=static_from_buildtype', 'warning_level=2' ]) +project('dxvk', ['c', 'cpp'], version : 'v2.5.2', meson_version : '>= 0.58', default_options : [ 'cpp_std=c++17', 'b_vscrt=static_from_buildtype', 'warning_level=2' ]) pkg = import('pkgconfig') cpu_family = target_machine.cpu_family() diff --git a/src/dxvk/dxvk_instance.cpp b/src/dxvk/dxvk_instance.cpp index b13eb273295..76a8a1b4ed1 100644 --- a/src/dxvk/dxvk_instance.cpp +++ b/src/dxvk/dxvk_instance.cpp @@ -183,7 +183,7 @@ namespace dxvk { appInfo.pApplicationName = appName.c_str(); appInfo.applicationVersion = flags.raw(); appInfo.pEngineName = "DXVK"; - appInfo.engineVersion = VK_MAKE_API_VERSION(0, 2, 5, 1); + appInfo.engineVersion = VK_MAKE_API_VERSION(0, 2, 5, 2); appInfo.apiVersion = VK_MAKE_API_VERSION(0, 1, 3, 0); VkInstanceCreateInfo info = { VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO };