diff --git a/README.rst b/README.rst index e4be82be..9c829098 100644 --- a/README.rst +++ b/README.rst @@ -1,7 +1,8 @@ libmc ===== -|build| |status| |pypiv| |pyversions| |wheel| |license| +|build_go| |build_py| +|status| |pypiv| |pyversions| |wheel| |license| libmc is a memcached client library for Python without any other dependencies in runtime. It's mainly written in C++ and Cython. libmc @@ -238,10 +239,10 @@ Copyright (c) 2014-2020, Douban Inc. All rights reserved. Licensed under a BSD license: https://github.com/douban/libmc/blob/master/LICENSE.txt -.. |build:Golang| image:: https://github.com/douban/libmc/actions/workflows/golang.yml/badge.svg +.. |build_go| image:: https://github.com/douban/libmc/actions/workflows/golang.yml/badge.svg :target: https://github.com/douban/libmc/actions/workflows/golang.yml -.. |build:Python| image:: ttps://github.com/douban/libmc/actions/workflows/python.yml/badge.svg +.. |build_py| image:: https://github.com/douban/libmc/actions/workflows/python.yml/badge.svg :target: https://github.com/douban/libmc/actions/workflows/python.yml .. |pypiv| image:: https://img.shields.io/pypi/v/libmc diff --git a/libmc/__init__.py b/libmc/__init__.py index 4df0337c..c5b801db 100644 --- a/libmc/__init__.py +++ b/libmc/__init__.py @@ -28,10 +28,10 @@ ) __VERSION__ = "1.4.1" -__version__ = "v1.4.1-5-g0177092" +__version__ = "v1.4.1-10-ga2080d1" __author__ = "mckelvin" __email__ = "mckelvin@users.noreply.github.com" -__date__ = "Thu May 20 18:28:25 2021 +0800" +__date__ = "Thu May 20 18:37:41 2021 +0800" class Client(PyClient): diff --git a/src/version.go b/src/version.go index 981fb7d6..9a84e392 100644 --- a/src/version.go +++ b/src/version.go @@ -1,9 +1,9 @@ package golibmc -const _Version = "v1.4.1-5-g0177092" +const _Version = "v1.4.1-10-ga2080d1" const _Author = "mckelvin" const _Email = "mckelvin@users.noreply.github.com" -const _Date = "Thu May 20 18:28:25 2021 +0800" +const _Date = "Thu May 20 18:37:41 2021 +0800" // Version of the package const Version = _Version