Skip to content

Commit 0eb56a2

Browse files
committed
Bump Version 1.3.0
ChangeLog: - douban#101, douban#104 Implement flush_all feature - douban#103 Fix potential memleaks
1 parent 1bf0d09 commit 0eb56a2

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ project(libmc)
33
set(CMAKE_MACOSX_RPATH 1)
44

55
set (MC_VERSION_MAJOR 1)
6-
set (MC_VERSION_MINOR 2)
7-
set (MC_VERSION_PATCH 1)
6+
set (MC_VERSION_MINOR 3)
7+
set (MC_VERSION_PATCH 0)
88

99
set (MC_VERSION ${MC_VERSION_MAJOR}.${MC_VERSION_MINOR})
1010
set (MC_APIVERSION ${MC_VERSION}.${MC_VERSION_PATCH})

libmc/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@
2727
__file__ as _libmc_so_file
2828
)
2929

30-
__VERSION__ = "1.2.0"
31-
__version__ = "v1.2.1-4-gc3c6500"
30+
__VERSION__ = "1.3.0"
31+
__version__ = "v1.3.0"
3232
__author__ = "mckelvin"
3333
__email__ = "[email protected]"
34-
__date__ = "Tue Jul 30 14:06:44 2019 +0800"
34+
__date__ = "Sat Aug 10 12:15:00 2019 +0800"
3535

3636

3737
class Client(PyClient):

src/version.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package golibmc
22

3-
const _Version = "v1.2.1-4-gc3c6500"
3+
const _Version = "v1.3.0"
44
const _Author = "mckelvin"
55
const _Email = "[email protected]"
6-
const _Date = "Tue Jul 30 14:06:44 2019 +0800"
6+
const _Date = "Sat Aug 10 12:15:00 2019 +0800"
77

88
// Version of the package
99
const Version = _Version

0 commit comments

Comments
 (0)