Release 0.10.1. dulwich-0.10.1
authorJelmer Vernooij <jelmer@samba.org>
Wed, 25 Mar 2015 01:36:12 +0000 (01:36 +0000)
committerJelmer Vernooij <jelmer@samba.org>
Wed, 25 Mar 2015 01:46:00 +0000 (01:46 +0000)
MANIFEST.in
NEWS
dulwich/__init__.py
dulwich/tests/test_repository.py
setup.py

index 289ea111e0dfca2a3ae503e8125852fdc4011eac..e997dc0787211eb3b5d927861041962ca1fb0943 100644 (file)
@@ -4,6 +4,7 @@ include README.md
 include Makefile
 include COPYING
 include HACKING
+include setup.cfg
 include dulwich/stdint.h
 recursive-include docs conf.py *.txt Makefile make.bat
 recursive-include examples *.py
diff --git a/NEWS b/NEWS
index 09d05e9351398af286575b04229ab82c59afcb4b..d181182ff32bb808a1c731881c23d1e1d4049dc3 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,4 @@
-0.10.1  UNRELEASED
+0.10.1  2015-03-25
 
  BUG FIXES
 
index 94dad6b47f9da6a3b13b4edb11a8c95a1dd38a34..7012addb52705cd74475ba0820182a2894edf22c 100644 (file)
@@ -21,4 +21,4 @@
 
 """Python implementation of the Git file formats and protocols."""
 
-__version__ = (0, 10, 0)
+__version__ = (0, 10, 1)
index a0985aca0db1ab396d42a58214208df86a5a5ea9..c6cb347a52ded8be31f93c0fdb44a63ae0690e19 100644 (file)
@@ -122,7 +122,7 @@ class RepositoryTests(TestCase):
             self.assertEqual(k in r, contained)
 
         for k, _ in test_keys:
-            self.assertRaisesRegex(
+            self.assertRaisesRegexp(
                 TypeError, "'name' must be bytestring, not unicode",
                 r.__getitem__, unicode(k)
             )
index 8c5ec06e4f080feed5b315d542e73652d2a97a3f..23b7eef29ddfe421113a43867d2256fa48244259 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -8,7 +8,7 @@ except ImportError:
     from distutils.core import setup, Extension
 from distutils.core import Distribution
 
-dulwich_version_string = '0.10.0'
+dulwich_version_string = '0.10.1'
 
 include_dirs = []
 # Windows MSVC support