Skip to content

Commit b15fc3c

Browse files
Updated lib/ccrush dependency and removed "_cli" suffix from the pwcrypt console program. Release 4.2.3
1 parent 41b1393 commit b15fc3c

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

CMakeLists.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/cmake" ${CMAKE_MODULE_PATH})
2020

2121
set(${PROJECT_NAME}_MAJOR 4)
2222
set(${PROJECT_NAME}_MINOR 2)
23-
set(${PROJECT_NAME}_PATCH 2)
23+
set(${PROJECT_NAME}_PATCH 3)
2424
set(${PROJECT_NAME}_VERSION_STRING "${${PROJECT_NAME}_MAJOR}.${${PROJECT_NAME}_MINOR}.${${PROJECT_NAME}_PATCH}")
2525

2626
option(ENABLE_TESTING "Build MbedTLS tests." OFF)
@@ -133,6 +133,7 @@ if (NOT ${${PROJECT_NAME}_ONLY_BUILD_LIB})
133133
)
134134

135135
set_target_properties(${PROJECT_NAME}_cli PROPERTIES
136+
OUTPUT_NAME "${PROJECT_NAME}"
136137
RUNTIME_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}/bin"
137138
RUNTIME_OUTPUT_DIRECTORY_DEBUG "${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}/bin/debug"
138139
RUNTIME_OUTPUT_DIRECTORY_RELEASE "${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}/bin/release"

include/pwcrypt.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,12 +72,12 @@ static const uint8_t EMPTY64[64] = {
7272
/**
7373
* Current version of the used pwcrypt library.
7474
*/
75-
#define PWCRYPT_VERSION 422
75+
#define PWCRYPT_VERSION 423
7676

7777
/**
7878
* Current version of the used pwcrypt library (nicely-formatted string).
7979
*/
80-
#define PWCRYPT_VERSION_STR "4.2.2"
80+
#define PWCRYPT_VERSION_STR "4.2.3"
8181

8282
#ifndef PWCRYPT_Z_CHUNKSIZE
8383
/**

0 commit comments

Comments
 (0)