Skip to content

Commit e20ddc3

Browse files
update version for CMake
1 parent e80deec commit e20ddc3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ if("${CMAKE_SOURCE_DIR}" STREQUAL "${CMAKE_BINARY_DIR}")
2828
You must delete them, or cmake will refuse to work.")
2929
endif()
3030

31-
project(wolfssl VERSION 5.6.6 LANGUAGES C ASM)
31+
project(wolfssl VERSION 5.7.0 LANGUAGES C ASM)
3232

3333
# Set WOLFSSL_ROOT if not already defined
3434
if ("${WOLFSSL_ROOT}" STREQUAL "")
@@ -43,12 +43,12 @@ endif()
4343

4444
# shared library versioning
4545
# increment if interfaces have been added, removed or changed
46-
set(LIBTOOL_CURRENT 42)
46+
set(LIBTOOL_CURRENT 43)
4747
# increment if source code has changed set to zero if current is incremented
4848
set(LIBTOOL_REVISION 0)
4949
# increment if interfaces have been added set to zero if interfaces have been
5050
# removed or changed
51-
set(LIBTOOL_AGE 0)
51+
set(LIBTOOL_AGE 1)
5252

5353
math(EXPR LIBTOOL_SO_VERSION "${LIBTOOL_CURRENT} - ${LIBTOOL_AGE}")
5454
set(LIBTOOL_FULL_VERSION ${LIBTOOL_SO_VERSION}.${LIBTOOL_AGE}.${LIBTOOL_REVISION})

0 commit comments

Comments
 (0)