Skip to content

Commit

Permalink
version 1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
darrenjs committed Apr 12, 2018
1 parent ef0280c commit ca6ad3b
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 12 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
unreleased
==========

version 1.6
===========

Released 2018-04-12

## Added

- support WAMP unregister (issue #21)
Expand All @@ -19,6 +24,8 @@ unreleased

## Fixed

- Fix compatibility with OpenSSL 1.1 (Sven Neumann)

- http headers checking now case-insensitive (issue #28)

- user callback functions not checked for null for unsolicited messages
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ project(wampcc)

# Version number
set (WAMPCC_VERSION_MAJOR 1)
set (WAMPCC_VERSION_MINOR 5)
set (WAMPCC_VERSION_MINOR 6)
set (WAMPCC_VERSION "${WAMPCC_VERSION_MAJOR}.${WAMPCC_VERSION_MINOR}")
# Include extra cmake modules
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake")
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

#========== Initialisation ==========

AC_INIT([wampcc], [1.5], [[email protected]], [wampcc], [ ] )
AC_INIT([wampcc], [1.6], [[email protected]], [wampcc], [ ] )
AC_PREREQ([2.59])

AC_CONFIG_AUX_DIR([.])
Expand Down
6 changes: 3 additions & 3 deletions include/wampcc/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
#define WAMPCC_VERSION_H

#define WAMPCC_PACKAGE_NAME "wampcc"
#define WAMPCC_PACKAGE_VERSION "1.5"
#define WAMPCC_PACKAGE_STRING "wampcc 1.5"
#define WAMPCC_PACKAGE_VERSION "1.6"
#define WAMPCC_PACKAGE_STRING "wampcc 1.6"

#define WAMPCC_MAJOR_VERSION 1
#define WAMPCC_MINOR_VERSION 5
#define WAMPCC_MINOR_VERSION 6
#define WAMPCC_MICRO_VERSION 0

#endif
3 changes: 2 additions & 1 deletion include/wampcc/wamp_session.h
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,8 @@ struct auth_provider
const std::string& response)> check_cra;

/* Obtain the secret for given user and realm. Required if check_cra is not
* provided. */
* provided. Note that the user secret can either be a naked password (if
* cra_salt is null), or cab be the derived secret (is salting is used). */
std::function<std::string(const std::string& user,
const std::string& realm)> user_secret;

Expand Down
4 changes: 2 additions & 2 deletions libs/json/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ if(BUILD_SHARED_LIBS)
set_target_properties(wampcc_json_shared PROPERTIES OUTPUT_NAME wampcc_json)

# Set library API version
set_property(TARGET wampcc_json_shared PROPERTY VERSION "5.0.0")
set_property(TARGET wampcc_json_shared PROPERTY SOVERSION 5 )
set_property(TARGET wampcc_json_shared PROPERTY VERSION "6.0.0")
set_property(TARGET wampcc_json_shared PROPERTY SOVERSION 6 )

target_include_directories(wampcc_json_shared
PRIVATE ${PROJECT_SOURCE_DIR}/3rdparty/msgpack-c/include
Expand Down
2 changes: 1 addition & 1 deletion libs/json/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,4 @@ libwampcc_json_la_LIBADD=$(janssonlib)
# - AGE: indicates compatibilty with previous version of the shlib.
#
#libwampcc_json_la_LDFLAGS = -version-info 0:0:0 /home/darrens/opt/jansson-2.7/lib/libjansson.la
libwampcc_json_la_LDFLAGS = -version-info 5:0:0
libwampcc_json_la_LDFLAGS = -version-info 6:0:0
4 changes: 2 additions & 2 deletions libs/wampcc/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ if(BUILD_SHARED_LIBS)
set_target_properties(wampcc_shared PROPERTIES OUTPUT_NAME wampcc)

# Set library API version
set_property(TARGET wampcc_shared PROPERTY VERSION "5.0.0")
set_property(TARGET wampcc_shared PROPERTY SOVERSION 5 )
set_property(TARGET wampcc_shared PROPERTY VERSION "6.0.0")
set_property(TARGET wampcc_shared PROPERTY SOVERSION 6 )

target_include_directories(wampcc_shared PRIVATE
${LIBUV_INCLUDE_DIRS} )
Expand Down
2 changes: 1 addition & 1 deletion libs/wampcc/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,4 @@ libwampcc_la_LIBADD = -lpthread -lssl -lcrypto $(libuvlib)
# - REVISION: revision of current version. Incr. base on internal changes.
# - AGE: indicates compatibilty with previous version of the shlib.
#
libwampcc_la_LDFLAGS = -version-info 5:0:0
libwampcc_la_LDFLAGS = -version-info 6:0:0

0 comments on commit ca6ad3b

Please sign in to comment.