Skip to content

Commit

Permalink
chore: fix build badge
Browse files Browse the repository at this point in the history
  • Loading branch information
everpcpc committed May 20, 2021
1 parent 6b53198 commit 382ae14
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
7 changes: 4 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions libmc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@
)

__VERSION__ = "1.4.1"
__version__ = "v1.4.1-5-g0177092"
__version__ = "v1.4.1-10-ga2080d1"
__author__ = "mckelvin"
__email__ = "[email protected]"
__date__ = "Thu May 20 18:28:25 2021 +0800"
__date__ = "Thu May 20 18:37:41 2021 +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.1-5-g0177092"
const _Version = "v1.4.1-10-ga2080d1"
const _Author = "mckelvin"
const _Email = "[email protected]"
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
Expand Down

0 comments on commit 382ae14

Please sign in to comment.