Răsfoiți Sursa

Release 0.20.2

Jelmer Vernooij 4 ani în urmă
părinte
comite
f2d551716a
3 a modificat fișierele cu 6 adăugiri și 2 ștergeri
  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):