File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -23,8 +23,8 @@ if(POLICY CMP0091)
2323endif ()
2424
2525set (UHDR_MAJOR_VERSION 1)
26- set (UHDR_MINOR_VERSION 3 )
27- set (UHDR_PATCH_VERSION 1 )
26+ set (UHDR_MINOR_VERSION 4 )
27+ set (UHDR_PATCH_VERSION 0 )
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
75+ * 1.4.0 1.4.0 quality improvements, bug fixes, added new features
76+ * and api update.
7677 */
7778
7879// This needs to be kept in sync with version in CMakeLists.txt
7980#define UHDR_LIB_VER_MAJOR 1
80- #define UHDR_LIB_VER_MINOR 3
81- #define UHDR_LIB_VER_PATCH 1
81+ #define UHDR_LIB_VER_MINOR 4
82+ #define UHDR_LIB_VER_PATCH 0
8283
8384#define UHDR_LIB_VERSION \
8485 ((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