Skip to content

Commit dcfadb7

Browse files
ram-mohanDichenZhang1
authored andcommitted
bump to 1.3.1
Test: Build
1 parent 68b866f commit dcfadb7

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ endif()
2424

2525
set(UHDR_MAJOR_VERSION 1)
2626
set(UHDR_MINOR_VERSION 3)
27-
set(UHDR_PATCH_VERSION 0)
27+
set(UHDR_PATCH_VERSION 1)
2828
project(libuhdr
2929
VERSION ${UHDR_MAJOR_VERSION}.${UHDR_MINOR_VERSION}.${UHDR_PATCH_VERSION}
3030
LANGUAGES C CXX

ultrahdr_api.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,12 +72,13 @@
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)

0 commit comments

Comments
 (0)