瀏覽代碼

Release 0.20.5

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

+ 1 - 1
NEWS

@@ -1,4 +1,4 @@
-0.20.4	2020-06-22
+0.20.5	2020-06-22
 
  * Print a clearer exception when setup.py is executed on Python < 3.5.
    (Jelmer Vernooij, #783)

+ 1 - 1
dulwich/__init__.py

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

+ 1 - 1
setup.py

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