Browse Source

New upstream version 0.18.1

Jelmer Vernooij 7 năm trước cách đây
mục cha
commit
a2a83e9560

+ 7 - 0
NEWS

@@ -1,3 +1,10 @@
+0.18.1	2017-07-31
+
+ BUG FIXES
+
+  * Fix syntax error in dulwich.contrib.test_swift_smoke.
+    (Jelmer Vernooij)
+
 0.18.0	2017-07-31
 0.18.0	2017-07-31
 
 
  BUG FIXES
  BUG FIXES

+ 1 - 1
PKG-INFO

@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Metadata-Version: 1.1
 Name: dulwich
 Name: dulwich
-Version: 0.18.0
+Version: 0.18.1
 Summary: Python Git Library
 Summary: Python Git Library
 Home-page: https://www.dulwich.io/
 Home-page: https://www.dulwich.io/
 Author: UNKNOWN
 Author: UNKNOWN

+ 1 - 1
dulwich.egg-info/PKG-INFO

@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Metadata-Version: 1.1
 Name: dulwich
 Name: dulwich
-Version: 0.18.0
+Version: 0.18.1
 Summary: Python Git Library
 Summary: Python Git Library
 Home-page: https://www.dulwich.io/
 Home-page: https://www.dulwich.io/
 Author: UNKNOWN
 Author: UNKNOWN

+ 1 - 1
dulwich/__init__.py

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

+ 1 - 1
dulwich/contrib/test_swift_smoke.py

@@ -42,7 +42,7 @@ import gevent
 from gevent import monkey
 from gevent import monkey
 monkey.patch_all()
 monkey.patch_all()
 
 
-from dulwich (  # noqa:E402
+from dulwich import (  # noqa:E402
     server,
     server,
     repo,
     repo,
     index,
     index,

+ 1 - 1
setup.py

@@ -11,7 +11,7 @@ from distutils.core import Distribution
 import os
 import os
 import sys
 import sys
 
 
-dulwich_version_string = '0.18.0'
+dulwich_version_string = '0.18.1'
 
 
 include_dirs = []
 include_dirs = []
 # Windows MSVC support
 # Windows MSVC support