Hello community,

here is the log from the commit of package python-python-memcached for 
openSUSE:Factory checked in at 2015-10-08 08:25:00
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-python-memcached (Old)
 and      /work/SRC/openSUSE:Factory/.python-python-memcached.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-python-memcached"

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/python-python-memcached/python-python-memcached.changes
  2015-08-01 11:39:06.000000000 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-python-memcached.new/python-python-memcached.changes
     2015-10-08 08:25:01.000000000 +0200
@@ -1,0 +2,7 @@
+Tue Oct  6 11:21:23 UTC 2015 - mci...@suse.cz
+
+- update to 1.57:
+   * Fix for #75 and #76, mc.set(key, False) results in "ValueError:
+     invalid literal for int()".  Reported by Carlos Sanchez on github.
+
+-------------------------------------------------------------------

Old:
----
  python-memcached-1.56.tar.gz

New:
----
  python-memcached-1.57.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-python-memcached.spec ++++++
--- /var/tmp/diff_new_pack.10JLmI/_old  2015-10-08 08:25:01.000000000 +0200
+++ /var/tmp/diff_new_pack.10JLmI/_new  2015-10-08 08:25:01.000000000 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           python-python-memcached
-Version:        1.56
+Version:        1.57
 Release:        0
 Url:            http://www.tummy.com/Community/software/python-memcached/
 Summary:        Pure python memcached client

++++++ python-memcached-1.56.tar.gz -> python-memcached-1.57.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-memcached-1.56/ChangeLog 
new/python-memcached-1.57/ChangeLog
--- old/python-memcached-1.56/ChangeLog 2015-07-26 22:50:13.000000000 +0200
+++ new/python-memcached-1.57/ChangeLog 2015-07-31 19:50:13.000000000 +0200
@@ -1,3 +1,10 @@
+Fri, 31 Jul 2015 11:38:25 -0600  Sean Reifschneider  <j...@tummy.com>
+
+   *  1.57 release.
+
+   * Fix for #75 and #76, mc.set(key, False) results in "ValueError:
+     invalid literal for int()".  Reported by Carlos Sanchez on github.
+
 Sun, 26 Jul 2015 14:44:20 -0600  Sean Reifschneider  <j...@tummy.com>
 
    *  1.56 release.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-memcached-1.56/PKG-INFO 
new/python-memcached-1.57/PKG-INFO
--- old/python-memcached-1.56/PKG-INFO  2015-07-26 22:54:36.000000000 +0200
+++ new/python-memcached-1.57/PKG-INFO  2015-07-31 19:50:58.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: python-memcached
-Version: 1.56
+Version: 1.57
 Summary: Pure python memcached client
 Home-page: http://www.tummy.com/Community/software/python-memcached/
 Author: Sean Reifschneider
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-memcached-1.56/memcache.py 
new/python-memcached-1.57/memcache.py
--- old/python-memcached-1.56/memcache.py       2015-07-26 22:50:13.000000000 
+0200
+++ new/python-memcached-1.57/memcache.py       2015-07-31 19:50:14.000000000 
+0200
@@ -90,7 +90,7 @@
 
 #  Original author: Evan Martin of Danga Interactive
 __author__ = "Sean Reifschneider <jafo-memcac...@tummy.com>"
-__version__ = "1.56"
+__version__ = "1.57"
 __copyright__ = "Copyright (C) 2003 Danga Interactive"
 #  http://en.wikipedia.org/wiki/Python_Software_Foundation_License
 __license__ = "Python Software Foundation License"
@@ -934,7 +934,7 @@
             val = val.encode('utf-8')
         elif isinstance(val, int):
             flags |= Client._FLAG_INTEGER
-            val = str(val)
+            val = '%d' % val
             if six.PY3:
                 val = val.encode('ascii')
             # force no attempt to compress this silly string.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/python-memcached-1.56/python_memcached.egg-info/PKG-INFO 
new/python-memcached-1.57/python_memcached.egg-info/PKG-INFO
--- old/python-memcached-1.56/python_memcached.egg-info/PKG-INFO        
2015-07-26 22:54:36.000000000 +0200
+++ new/python-memcached-1.57/python_memcached.egg-info/PKG-INFO        
2015-07-31 19:50:58.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: python-memcached
-Version: 1.56
+Version: 1.57
 Summary: Pure python memcached client
 Home-page: http://www.tummy.com/Community/software/python-memcached/
 Author: Sean Reifschneider
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-memcached-1.56/setup.py 
new/python-memcached-1.57/setup.py
--- old/python-memcached-1.56/setup.py  2015-07-26 22:54:34.000000000 +0200
+++ new/python-memcached-1.57/setup.py  2015-07-31 19:50:57.000000000 +0200
@@ -4,7 +4,7 @@
 
 
 setup(name="python-memcached",
-      version="1.56",
+      version="1.57",
       description="Pure python memcached client",
       long_description=open("README.md").read(),
       author="Evan Martin",


Reply via email to