From 56b7c8cd41ea17c0656f9485730fea5d55b3db62 Mon Sep 17 00:00:00 2001 From: Philip Rebohle Date: Mon, 11 Nov 2024 15:27:07 +0100 Subject: [PATCH] [meta] Release 2.5 --- 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 005119baaa0..95e3ba81920 100644 --- a/RELEASE +++ b/RELEASE @@ -1 +1 @@ -2.4.1 +2.5 diff --git a/meson.build b/meson.build index ecf7e4da096..333879fb2ce 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,4 @@ -project('dxvk', ['c', 'cpp'], version : 'v2.4.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', 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 2aea8814e49..d76971c9ea3 100644 --- a/src/dxvk/dxvk_instance.cpp +++ b/src/dxvk/dxvk_instance.cpp @@ -184,7 +184,7 @@ namespace dxvk { appInfo.pApplicationName = appName.c_str(); appInfo.applicationVersion = flags.raw(); appInfo.pEngineName = "DXVK"; - appInfo.engineVersion = VK_MAKE_API_VERSION(0, 2, 4, 1); + appInfo.engineVersion = VK_MAKE_API_VERSION(0, 2, 5, 0); appInfo.apiVersion = VK_MAKE_API_VERSION(0, 1, 3, 0); VkInstanceCreateInfo info = { VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO };