Skip to content

Commit d52a0d1

Browse files
harishdmDichenZhang1
authored andcommitted
bump version to 1.4.0
1.3.1 is not api compatible with 1.3.0, hence changed the version to 1.4.0.
1 parent dcfadb7 commit d52a0d1

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ if(POLICY CMP0091)
2323
endif()
2424

2525
set(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)
2828
project(libuhdr
2929
VERSION ${UHDR_MAJOR_VERSION}.${UHDR_MINOR_VERSION}.${UHDR_PATCH_VERSION}
3030
LANGUAGES C CXX

ultrahdr_api.h

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,13 +72,14 @@
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)

0 commit comments

Comments
 (0)