瀏覽代碼

libobs: Update version to 32.0.0

Ryan Foster 1 月之前
父節點
當前提交
1239ef5f83
共有 1 個文件被更改,包括 3 次插入3 次删除
  1. 3 3
      libobs/obs-config.h

+ 3 - 3
libobs/obs-config.h

@@ -27,21 +27,21 @@
 /*
  * Increment if major breaking API changes
  */
-#define LIBOBS_API_MAJOR_VER 31
+#define LIBOBS_API_MAJOR_VER 32
 
 /*
  * Increment if backward-compatible additions
  *
  * Reset to zero each major version
  */
-#define LIBOBS_API_MINOR_VER 1
+#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 2
+#define LIBOBS_API_PATCH_VER 0
 
 #define MAKE_SEMANTIC_VERSION(major, minor, patch) ((major << 24) | (minor << 16) | patch)