summaryrefslogtreecommitdiff
path: root/ChangeLog.rst
diff options
context:
space:
mode:
authorJon Parise <jon@pinterest.com>2019-01-28 07:38:11 -0800
committerJon Parise <jon@pinterest.com>2019-01-28 07:43:22 -0800
commit3d820b2f9c85210fd810fe8c8548265621867f69 (patch)
tree9b625f78a7327f18cdaa5e649849be2922add7d2 /ChangeLog.rst
parentef2cf23e898124a7f336dc4bcb87c6a9c50f27c9 (diff)
downloadpymemcache-3d820b2f9c85210fd810fe8c8548265621867f69.tar.gz
Parse version directly from pymemcache/__init__.py
We can no longer import the __version__ attribute because there is no an implicit runtime dependency on six (as of #197), and we can't guarantee that six is installed until *after* setup.py is parsed and run. Instead, parse the `__version__ = 'x.y.z'` string from __init__.py to extract the version. Fixes #214
Diffstat (limited to 'ChangeLog.rst')
-rw-r--r--ChangeLog.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/ChangeLog.rst b/ChangeLog.rst
index e398fae..7f0cdef 100644
--- a/ChangeLog.rst
+++ b/ChangeLog.rst
@@ -1,6 +1,10 @@
Change Log
==========
+New in version 2.1.1
+--------------------
+* Fix ``setup.py`` dependency on six already being installed.
+
New in version 2.1.0
--------------------
* Public classes and exceptions can now be imported from the top-level