File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ endif()
2424
2525set (UHDR_MAJOR_VERSION 1)
2626set (UHDR_MINOR_VERSION 3)
27- set (UHDR_PATCH_VERSION 0 )
27+ set (UHDR_PATCH_VERSION 1 )
2828project (libuhdr
2929 VERSION ${UHDR_MAJOR_VERSION} .${UHDR_MINOR_VERSION} .${UHDR_PATCH_VERSION}
3030 LANGUAGES C CXX
Original file line number Diff line number Diff line change 7272 * existing API which warrants a major version update.
7373 * But indicated as a minor update.
7474 * 1.3.0 1.3.0 Some bug fixes, introduced new API.
75+ * 1.3.1 1.3.1 quality improvements, bug fixes, added new features
7576 */
7677
7778// This needs to be kept in sync with version in CMakeLists.txt
7879#define UHDR_LIB_VER_MAJOR 1
7980#define UHDR_LIB_VER_MINOR 3
80- #define UHDR_LIB_VER_PATCH 0
81+ #define UHDR_LIB_VER_PATCH 1
8182
8283#define UHDR_LIB_VERSION \
8384 ((UHDR_LIB_VER_MAJOR * 10000) + (UHDR_LIB_VER_MINOR * 100) + UHDR_LIB_VER_PATCH)
You can’t perform that action at this time.
0 commit comments