Skip to content

Commit

Permalink
bump to 1.3.1
Browse files Browse the repository at this point in the history
Test: Build
  • Loading branch information
ram-mohan committed Dec 14, 2024
1 parent 4cb4626 commit 7497048
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ endif()

set(UHDR_MAJOR_VERSION 1)
set(UHDR_MINOR_VERSION 3)
set(UHDR_PATCH_VERSION 0)
set(UHDR_PATCH_VERSION 1)
project(libuhdr
VERSION ${UHDR_MAJOR_VERSION}.${UHDR_MINOR_VERSION}.${UHDR_PATCH_VERSION}
LANGUAGES C CXX
Expand Down
3 changes: 2 additions & 1 deletion ultrahdr_api.h
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,13 @@
* 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
*/

// 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 0
#define UHDR_LIB_VER_PATCH 1

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

0 comments on commit 7497048

Please sign in to comment.