Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
kentslaney committed Jun 6, 2024
1 parent 6888e8b commit a11c067
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 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 4)
set (MC_VERSION_PATCH 5)

set (MC_VERSION ${MC_VERSION_MAJOR}.${MC_VERSION_MINOR})
set (MC_APIVERSION ${MC_VERSION}.${MC_VERSION_PATCH})
Expand Down
4 changes: 2 additions & 2 deletions libmc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@
)

__VERSION__ = "1.4.4"
__version__ = "v1.4.4"
__version__ = "1.4.5"
__author__ = "mckelvin"
__email__ = "mckelvin@users.noreply.github.com"
__date__ = "Sat Jun 1 05:10:05 2024 +0800"
__date__ = "Fri Jun 7 06:16:00 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.4"
const _Version = "1.4.5"
const _Author = "mckelvin"
const _Email = "mckelvin@users.noreply.github.com"
const _Date = "Sat Jun 1 05:10:05 2024 +0800"
const _Date = "Fri Jun 7 06:16:00 2024 +0800"

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

0 comments on commit a11c067

Please sign in to comment.