summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Charriere <nicholascharriere@gmail.com>2017-04-04 13:30:28 -0700
committerGitHub <noreply@github.com>2017-04-04 13:30:28 -0700
commit4efcfcd699d4fadc95f8e59c92136658fdd38cdd (patch)
treefee1a4e21b541e9f50afb4919316f09cd0785749
parentcd3cdfdf2d0028484d1e7223c33aa9c09b1c45eb (diff)
parent9022f6fdde41a16acc3f2fdb306384e6c78fc8de (diff)
downloadpymemcache-4efcfcd699d4fadc95f8e59c92136658fdd38cdd.tar.gz
Merge pull request #148 from pinterest/release-143
Release 143
-rw-r--r--ChangeLog.rst6
-rw-r--r--pymemcache/__init__.py2
-rw-r--r--setup.cfg4
3 files changed, 8 insertions, 4 deletions
diff --git a/ChangeLog.rst b/ChangeLog.rst
index 6ee6e9d..41b6af2 100644
--- a/ChangeLog.rst
+++ b/ChangeLog.rst
@@ -1,5 +1,11 @@
Change Log
==========
+New in version 1.4.3
+--------------------
+* Documentation improvements
+* Fixed cachedump stats command, see [ticket](https://github.com/pinterest/pymemcache/issues/103)
+* Honor default_value in HashClient
+
New in version 1.4.2
--------------------
* Drop support for python 2.6, see [ticket](https://github.com/pinterest/pymemcache/issues/139)
diff --git a/pymemcache/__init__.py b/pymemcache/__init__.py
index e36ce0a..123a25c 100644
--- a/pymemcache/__init__.py
+++ b/pymemcache/__init__.py
@@ -1,2 +1,2 @@
-__version__ = '1.4.2'
+__version__ = '1.4.3'
__author__ = "Charles Gordon"
diff --git a/setup.cfg b/setup.cfg
index 4bc86b3..685c009 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,5 +1,5 @@
[bumpversion]
-current_version = 1.4.2
+current_version = 1.4.3
commit = False
tag = True
@@ -12,8 +12,6 @@ addopts =
--verbose
--tb=short
--capture=no
- # show extra test summary info as specified by chars (f)ailed, (E)error,
- # (s)skipped, (x)failed, (X)passed.
-rfEsxX
--cov=pymemcache --cov-report=xml --cov-report=term-missing
-m unit