libobs: Revert version update to 22.0.0 (instead, do RC2)

This reverts commit 3d4b277a60.

Reverting temporarily for the sake of completeness and confirming
testing results.
This commit is contained in:
jp9000
2018-08-18 04:56:42 -07:00
parent b7e1ace3bb
commit 2647da568f

View File

@@ -27,21 +27,21 @@
/*
* Increment if major breaking API changes
*/
#define LIBOBS_API_MAJOR_VER 22
#define LIBOBS_API_MAJOR_VER 21
/*
* Increment if backward-compatible additions
*
* Reset to zero each major version
*/
#define LIBOBS_API_MINOR_VER 0
#define LIBOBS_API_MINOR_VER 1
/*
* Increment if backward-compatible bug fix
*
* Reset to zero each major or minor version
*/
#define LIBOBS_API_PATCH_VER 0
#define LIBOBS_API_PATCH_VER 2
#define MAKE_SEMANTIC_VERSION(major, minor, patch) \
((major << 24) | \