Fix revnum types in verify_fs, release 0.8.7. subvertpy-0.8.7
authorJelmer Vernooij <jelmer@samba.org>
Mon, 19 Sep 2011 16:27:41 +0000 (18:27 +0200)
committerJelmer Vernooij <jelmer@samba.org>
Mon, 19 Sep 2011 16:27:41 +0000 (18:27 +0200)
NEWS
setup.py
subvertpy/__init__.py
subvertpy/repos.c

diff --git a/NEWS b/NEWS
index abb41759ce55bb82e3bd9e9a7093b8f2d34b3961..571bc9a88f8c741e4bdda7e918c7b80fe26f31b8 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,10 @@
+0.8.7  2011-09-19
+
+ BUG FIXES
+
+  * Fix revnum types in subvertpy.repos.Repos.verify_fs().
+    (Jelmer Vernooij)
+
 0.8.6  2011-09-19
 
  FEATURES
index 025801ce07fa716d6b4b0e58e12c2b7ac716f773..16348f8544542d6798ce585a0cb463b531c1e5fc 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -345,7 +345,7 @@ def subvertpy_modules():
         ]
 
 
-subvertpy_version = (0, 8, 6)
+subvertpy_version = (0, 8, 7)
 subvertpy_version_string = ".".join(map(str, subvertpy_version))
 
 
index b66ce46ddbb100d4cf741297737548b5ce5860fd..af405c47b7ca454c2aeafbd6111c881e6fed575a 100644 (file)
@@ -17,7 +17,7 @@
 """Python bindings for Subversion."""
 
 __author__ = "Jelmer Vernooij <jelmer@samba.org>"
-__version__ = (0, 8, 6)
+__version__ = (0, 8, 7)
 
 NODE_DIR = 2
 NODE_FILE = 1
index b82ea081d86bd2e15e3610635d9703dc898d780b..885999c42e723c83b3257d897cc0b41507c0d5ea 100644 (file)
@@ -458,8 +458,8 @@ static PyObject *repos_verify(RepositoryObject *self, PyObject *args)
 {
        apr_pool_t *temp_pool;
        PyObject *py_feedback_stream;
-       long start_rev, end_rev;
-       if (!PyArg_ParseTuple(args, "Oii", &py_feedback_stream, &start_rev, &end_rev))
+       svn_revnum_t start_rev, end_rev;
+       if (!PyArg_ParseTuple(args, "Oll", &py_feedback_stream, &start_rev, &end_rev))
                return NULL;
        temp_pool = Pool(NULL);
        if (temp_pool == NULL)