File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,8 @@ set_target_properties(hiredis PROPERTIES EXPORT_NAME ${hiredis_export_name})
5353
5454SET_TARGET_PROPERTIES (hiredis
5555 PROPERTIES WINDOWS_EXPORT_ALL_SYMBOLS TRUE
56- VERSION "${HIREDIS_SONAME} " )
56+ VERSION "${VERSION} "
57+ SOVERSION "${HIREDIS_MAJOR} " )
5758IF (MSVC )
5859 SET_TARGET_PROPERTIES (hiredis
5960 PROPERTIES COMPILE_FLAGS /Z7)
@@ -169,7 +170,8 @@ IF(ENABLE_SSL)
169170 SET_TARGET_PROPERTIES (hiredis_ssl
170171 PROPERTIES
171172 WINDOWS_EXPORT_ALL_SYMBOLS TRUE
172- VERSION "${HIREDIS_SONAME} " )
173+ VERSION "${VERSION} "
174+ SOVERSION "${HIREDIS_MAJOR} " )
173175 IF (MSVC )
174176 SET_TARGET_PROPERTIES (hiredis_ssl
175177 PROPERTIES COMPILE_FLAGS /Z7)
Original file line number Diff line number Diff line change @@ -46,9 +46,9 @@ typedef long long ssize_t;
4646#include "alloc.h" /* for allocation wrappers */
4747
4848#define HIREDIS_MAJOR 1
49- #define HIREDIS_MINOR 2
49+ #define HIREDIS_MINOR 3
5050#define HIREDIS_PATCH 0
51- #define HIREDIS_SONAME 1.2.1-dev
51+ #define HIREDIS_SONAME 1.3.0
5252
5353/* Connection type can be blocking or non-blocking and is set in the
5454 * least significant bit of the flags field in redisContext. */
You can’t perform that action at this time.
0 commit comments