Skip to content

Commit

Permalink
bump version to 1.4.0
Browse files Browse the repository at this point in the history
1.3.1 is not api compatible with 1.3.0, hence changed the version
to 1.4.0.
  • Loading branch information
harishdm authored and DichenZhang1 committed Jan 10, 2025
1 parent dcfadb7 commit d52a0d1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ if(POLICY CMP0091)
endif()

set(UHDR_MAJOR_VERSION 1)
set(UHDR_MINOR_VERSION 3)
set(UHDR_PATCH_VERSION 1)
set(UHDR_MINOR_VERSION 4)
set(UHDR_PATCH_VERSION 0)
project(libuhdr
VERSION ${UHDR_MAJOR_VERSION}.${UHDR_MINOR_VERSION}.${UHDR_PATCH_VERSION}
LANGUAGES C CXX
Expand Down
7 changes: 4 additions & 3 deletions ultrahdr_api.h
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,14 @@
* existing API which warrants a major version update.
* But indicated as a minor update.
* 1.3.0 1.3.0 Some bug fixes, introduced new API.
* 1.3.1 1.3.1 quality improvements, bug fixes, added new features
* 1.4.0 1.4.0 quality improvements, bug fixes, added new features
* and api update.
*/

// This needs to be kept in sync with version in CMakeLists.txt
#define UHDR_LIB_VER_MAJOR 1
#define UHDR_LIB_VER_MINOR 3
#define UHDR_LIB_VER_PATCH 1
#define UHDR_LIB_VER_MINOR 4
#define UHDR_LIB_VER_PATCH 0

#define UHDR_LIB_VERSION \
((UHDR_LIB_VER_MAJOR * 10000) + (UHDR_LIB_VER_MINOR * 100) + UHDR_LIB_VER_PATCH)
Expand Down

0 comments on commit d52a0d1

Please sign in to comment.