Explorar el Código

Release 0.20.2

Jelmer Vernooij hace 4 años
padre
commit
f2d551716a
Se han modificado 3 ficheros con 6 adiciones y 2 borrados
  1. 4 0
      NEWS
  2. 1 1
      dulwich/__init__.py
  3. 1 1
      setup.py

+ 4 - 0
NEWS

@@ -1,3 +1,7 @@
+0.20.2	2020-06-01
+
+ * Brown bag release to fix uploads of Windows wheels.
+
 0.20.1	2020-06-01
 
  * Publish binary wheels for: Windows, Linux, Mac OS X.

+ 1 - 1
dulwich/__init__.py

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

+ 1 - 1
setup.py

@@ -15,7 +15,7 @@ import io
 import os
 import sys
 
-dulwich_version_string = '0.20.1'
+dulwich_version_string = '0.20.2'
 
 
 class DulwichDistribution(Distribution):