Browse Source

Release 0.10.1.

Jelmer Vernooij 10 years ago
parent
commit
6f7daf4676
5 changed files with 5 additions and 4 deletions
  1. 1 0
      MANIFEST.in
  2. 1 1
      NEWS
  3. 1 1
      dulwich/__init__.py
  4. 1 1
      dulwich/tests/test_repository.py
  5. 1 1
      setup.py

+ 1 - 0
MANIFEST.in

@@ -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 - 1
NEWS

@@ -1,4 +1,4 @@
-0.10.1  UNRELEASED
+0.10.1  2015-03-25
 
  BUG FIXES
 

+ 1 - 1
dulwich/__init__.py

@@ -21,4 +21,4 @@
 
 """Python implementation of the Git file formats and protocols."""
 
-__version__ = (0, 10, 0)
+__version__ = (0, 10, 1)

+ 1 - 1
dulwich/tests/test_repository.py

@@ -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)
             )

+ 1 - 1
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