File tree Expand file tree Collapse file tree 9 files changed +20
-12
lines changed Expand file tree Collapse file tree 9 files changed +20
-12
lines changed Original file line number Diff line number Diff line change 11unreleased
22==========
33
4+ version 1.6
5+ ===========
6+
7+ Released 2018-04-12
8+
49## Added
510
611- support WAMP unregister (issue #21 )
@@ -19,6 +24,8 @@ unreleased
1924
2025## Fixed
2126
27+ - Fix compatibility with OpenSSL 1.1 (Sven Neumann)
28+
2229- http headers checking now case-insensitive (issue #28 )
2330
2431- user callback functions not checked for null for unsolicited messages
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ project(wampcc)
44
55# Version number
66set (WAMPCC_VERSION_MAJOR 1)
7- set (WAMPCC_VERSION_MINOR 5 )
7+ set (WAMPCC_VERSION_MINOR 6 )
88set (WAMPCC_VERSION "${WAMPCC_VERSION_MAJOR} .${WAMPCC_VERSION_MINOR} " )
99# Include extra cmake modules
1010set (CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR} /cmake" )
Original file line number Diff line number Diff line change 11
22# ========== Initialisation ==========
33
4- AC_INIT ( [ wampcc] ,
[ 1.5 ] ,
[ [email protected] ] ,
[ wampcc] ,
[ ] ) 4+ AC_INIT ( [ wampcc] ,
[ 1.6 ] ,
[ [email protected] ] ,
[ wampcc] ,
[ ] ) 55AC_PREREQ ( [ 2.59] )
66
77AC_CONFIG_AUX_DIR ( [ .] )
Original file line number Diff line number Diff line change 99#define WAMPCC_VERSION_H
1010
1111#define WAMPCC_PACKAGE_NAME "wampcc"
12- #define WAMPCC_PACKAGE_VERSION "1.5 "
13- #define WAMPCC_PACKAGE_STRING "wampcc 1.5 "
12+ #define WAMPCC_PACKAGE_VERSION "1.6 "
13+ #define WAMPCC_PACKAGE_STRING "wampcc 1.6 "
1414
1515#define WAMPCC_MAJOR_VERSION 1
16- #define WAMPCC_MINOR_VERSION 5
16+ #define WAMPCC_MINOR_VERSION 6
1717#define WAMPCC_MICRO_VERSION 0
1818
1919#endif
Original file line number Diff line number Diff line change @@ -84,7 +84,8 @@ struct auth_provider
8484 const std::string& response)> check_cra;
8585
8686 /* Obtain the secret for given user and realm. Required if check_cra is not
87- * provided. */
87+ * provided. Note that the user secret can either be a naked password (if
88+ * cra_salt is null), or cab be the derived secret (is salting is used). */
8889 std::function<std::string(const std::string& user,
8990 const std::string& realm)> user_secret;
9091
Original file line number Diff line number Diff line change @@ -38,8 +38,8 @@ if(BUILD_SHARED_LIBS)
3838 set_target_properties (wampcc_json_shared PROPERTIES OUTPUT_NAME wampcc_json)
3939
4040 # Set library API version
41- set_property (TARGET wampcc_json_shared PROPERTY VERSION "5 .0.0" )
42- set_property (TARGET wampcc_json_shared PROPERTY SOVERSION 5 )
41+ set_property (TARGET wampcc_json_shared PROPERTY VERSION "6 .0.0" )
42+ set_property (TARGET wampcc_json_shared PROPERTY SOVERSION 6 )
4343
4444 target_include_directories (wampcc_json_shared
4545 PRIVATE ${PROJECT_SOURCE_DIR} /3rdparty/msgpack-c/include
Original file line number Diff line number Diff line change @@ -65,4 +65,4 @@ libwampcc_json_la_LIBADD=$(janssonlib)
6565# - AGE: indicates compatibilty with previous version of the shlib.
6666#
6767# libwampcc_json_la_LDFLAGS = -version-info 0:0:0 /home/darrens/opt/jansson-2.7/lib/libjansson.la
68- libwampcc_json_la_LDFLAGS = -version-info 5 :0:0
68+ libwampcc_json_la_LDFLAGS = -version-info 6 :0:0
Original file line number Diff line number Diff line change @@ -63,8 +63,8 @@ if(BUILD_SHARED_LIBS)
6363 set_target_properties (wampcc_shared PROPERTIES OUTPUT_NAME wampcc)
6464
6565 # Set library API version
66- set_property (TARGET wampcc_shared PROPERTY VERSION "5 .0.0" )
67- set_property (TARGET wampcc_shared PROPERTY SOVERSION 5 )
66+ set_property (TARGET wampcc_shared PROPERTY VERSION "6 .0.0" )
67+ set_property (TARGET wampcc_shared PROPERTY SOVERSION 6 )
6868
6969 target_include_directories (wampcc_shared PRIVATE
7070 ${LIBUV_INCLUDE_DIRS} )
Original file line number Diff line number Diff line change @@ -58,4 +58,4 @@ libwampcc_la_LIBADD = -lpthread -lssl -lcrypto $(libuvlib)
5858# - REVISION: revision of current version. Incr. base on internal changes.
5959# - AGE: indicates compatibilty with previous version of the shlib.
6060#
61- libwampcc_la_LDFLAGS = -version-info 5 :0:0
61+ libwampcc_la_LDFLAGS = -version-info 6 :0:0
You can’t perform that action at this time.
0 commit comments