Jelmer Vernooij 4 rokov pred
rodič
commit
a21c6a7539
3 zmenil súbory, kde vykonal 7 pridanie a 2 odobranie
  1. 5 0
      NEWS
  2. 1 1
      dulwich/__init__.py
  3. 1 1
      setup.py

+ 5 - 0
NEWS

@@ -1,3 +1,8 @@
+0.20.8	2020-10-29
+
+ * Build wheels on Mac OS X / Windows for Python 3.9.
+   (Jelmer Vernooij)
+
 0.20.7	2020-10-29
 
  * Check core.repositoryformatversion. (Jelmer Vernooij, #803)

+ 1 - 1
dulwich/__init__.py

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

+ 1 - 1
setup.py

@@ -23,7 +23,7 @@ if sys.version_info < (3, 5):
         'For 2.7 support, please install a version prior to 0.20')
 
 
-dulwich_version_string = '0.20.7'
+dulwich_version_string = '0.20.8'
 
 
 class DulwichDistribution(Distribution):