ソースを参照

libobs: Use same ver. in obs-config.h for betas/RCs

Lain 2 年 前
コミット
64e26b2969
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 29
+#define LIBOBS_API_MAJOR_VER 30
 
 /*
  * 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 3
+#define LIBOBS_API_PATCH_VER 0
 
 #define MAKE_SEMANTIC_VERSION(major, minor, patch) \
 	((major << 24) | (minor << 16) | patch)