瀏覽代碼

Release 0.20.11

Jelmer Vernooij 4 年之前
父節點
當前提交
39d790293d
共有 3 個文件被更改,包括 5 次插入3 次删除
  1. 3 1
      NEWS
  2. 1 1
      dulwich/__init__.py
  3. 1 1
      setup.py

+ 3 - 1
NEWS

@@ -1,7 +1,9 @@
-0.20.9	2020-10-30
+0.20.11	2020-10-30
 
  * Fix wheels build on Linux. (Ruslan Kuprieiev)
 
+ * Enable wheels build for Python 3.9 on Linux. (Jelmer Vernooij)
+
 0.20.8	2020-10-29
 
  * Build wheels on Mac OS X / Windows for Python 3.9.

+ 1 - 1
dulwich/__init__.py

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

+ 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.9'
+dulwich_version_string = '0.20.11'
 
 
 class DulwichDistribution(Distribution):