From 5fdc6d216fe7a325b3cd1b320565a210a26fbcc3 Mon Sep 17 00:00:00 2001 From: Ryan Foster Date: Fri, 4 Oct 2024 18:39:41 -0400 Subject: [PATCH] libobs: Update version to 31.0.0 --- libobs/obs-config.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libobs/obs-config.h b/libobs/obs-config.h index 2700c218f..b07fc12e7 100644 --- a/libobs/obs-config.h +++ b/libobs/obs-config.h @@ -27,21 +27,21 @@ /* * Increment if major breaking API changes */ -#define LIBOBS_API_MAJOR_VER 30 +#define LIBOBS_API_MAJOR_VER 31 /* * Increment if backward-compatible additions * * Reset to zero each major version */ -#define LIBOBS_API_MINOR_VER 2 +#define LIBOBS_API_MINOR_VER 0 /* * Increment if backward-compatible bug fix * * Reset to zero each major or minor version */ -#define LIBOBS_API_PATCH_VER 3 +#define LIBOBS_API_PATCH_VER 0 #define MAKE_SEMANTIC_VERSION(major, minor, patch) ((major << 24) | (minor << 16) | patch)