Browse Source

libobs: Update to version 17.0.0

jp9000 8 years ago
parent
commit
93e084088f
1 changed files with 3 additions and 3 deletions
  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  0 /* 0 means development, anything can break */
+#define LIBOBS_API_MAJOR_VER  17
 
 /*
  * Increment if backward-compatible additions
  *
  * Reset to zero each major version
  */
-#define LIBOBS_API_MINOR_VER  16
+#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  6
+#define LIBOBS_API_PATCH_VER  0
 
 #define MAKE_SEMANTIC_VERSION(major, minor, patch) \
                              ((major << 24) | \