@@ -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
@@ -1,4 +1,4 @@
-0.10.1 UNRELEASED
+0.10.1 2015-03-25
BUG FIXES
@@ -21,4 +21,4 @@
"""Python implementation of the Git file formats and protocols."""
-__version__ = (0, 10, 0)
+__version__ = (0, 10, 1)
@@ -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)
)
@@ -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