Skip to content

Commit aa79fc2

Browse files
committed
Updated versions.
1 parent cc571b8 commit aa79fc2

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
CMAKE_MINIMUM_REQUIRED (VERSION 2.8.6)
22
PROJECT (msgpack)
33

4-
SET (VERSION 0.5.9)
4+
SET (VERSION 0.6.0)
55
SET (VERSION_MAJOR 0)
6-
SET (VERSION_MINOR 5)
6+
SET (VERSION_MINOR 6)
77

88
SET (prefix ${CMAKE_INSTALL_PREFIX})
99
SET (exec_prefix "\${prefix}")
@@ -141,7 +141,7 @@ ADD_LIBRARY (msgpack-static STATIC
141141

142142
SET_TARGET_PROPERTIES (msgpack-static PROPERTIES OUTPUT_NAME "msgpack")
143143
SET_TARGET_PROPERTIES (msgpack PROPERTIES IMPORT_SUFFIX "_import.lib")
144-
SET_TARGET_PROPERTIES (msgpack PROPERTIES SOVERSION 3 VERSION 3.0.0)
144+
SET_TARGET_PROPERTIES (msgpack PROPERTIES SOVERSION 3 VERSION 4.0.0)
145145

146146
IF (MSGPACK_BUILD_TESTS)
147147
ENABLE_TESTING ()

include/msgpack/version_master.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#define MSGPACK_VERSION_MAJOR 0
2-
#define MSGPACK_VERSION_MINOR 5
3-
#define MSGPACK_VERSION_RELEASE 9
2+
#define MSGPACK_VERSION_MINOR 6
3+
#define MSGPACK_VERSION_RELEASE 0

src/Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ endif
1616

1717

1818
# -version-info CURRENT:REVISION:AGE
19-
libmsgpack_la_LDFLAGS = -version-info 3:0:0 -no-undefined
19+
libmsgpack_la_LDFLAGS = -version-info 4:0:0 -no-undefined
2020

2121

2222
# backward compatibility

0 commit comments

Comments
 (0)