Browse Source

New upstream version 0.18.1

Jelmer Vernooij 7 years ago
parent
commit
a2a83e9560
6 changed files with 12 additions and 5 deletions
  1. 7 0
      NEWS
  2. 1 1
      PKG-INFO
  3. 1 1
      dulwich.egg-info/PKG-INFO
  4. 1 1
      dulwich/__init__.py
  5. 1 1
      dulwich/contrib/test_swift_smoke.py
  6. 1 1
      setup.py

+ 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
 
  BUG FIXES

+ 1 - 1
PKG-INFO

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

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

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

+ 1 - 1
dulwich/__init__.py

@@ -22,4 +22,4 @@
 
 """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
 monkey.patch_all()
 
-from dulwich (  # noqa:E402
+from dulwich import (  # noqa:E402
     server,
     repo,
     index,

+ 1 - 1
setup.py

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