Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
kentslaney committed May 31, 2024
1 parent f8ecc8e commit 51e627f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set(CMAKE_MACOSX_RPATH 1)

set (MC_VERSION_MAJOR 1)
set (MC_VERSION_MINOR 4)
set (MC_VERSION_PATCH 1)
set (MC_VERSION_PATCH 4)

set (MC_VERSION ${MC_VERSION_MAJOR}.${MC_VERSION_MINOR})
set (MC_APIVERSION ${MC_VERSION}.${MC_VERSION_PATCH})
Expand Down
6 changes: 3 additions & 3 deletions libmc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@
__file__ as _libmc_so_file
)

__VERSION__ = "1.4.3"
__version__ = "v1.4.3"
__VERSION__ = "1.4.4"
__version__ = "v1.4.4"
__author__ = "mckelvin"
__email__ = "[email protected]"
__date__ = "Fri Dec 1 07:43:12 2023 +0800"
__date__ = "Sat Jun 1 05:10:05 2024 +0800"


class Client(PyClient):
Expand Down
4 changes: 2 additions & 2 deletions src/version.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package golibmc

const _Version = "v1.4.3"
const _Version = "v1.4.4"
const _Author = "mckelvin"
const _Email = "[email protected]"
const _Date = "Fri Dec 1 07:43:12 2023 +0800"
const _Date = "Sat Jun 1 05:10:05 2024 +0800"

// Version of the package
const Version = _Version
Expand Down

0 comments on commit 51e627f

Please sign in to comment.