Jelmer Vernooij 4 éve
szülő
commit
47b121a72e
3 módosított fájl, 3 hozzáadás és 3 törlés
  1. 1 1
      NEWS
  2. 1 1
      dulwich/__init__.py
  3. 1 1
      setup.py

+ 1 - 1
NEWS

@@ -1,4 +1,4 @@
-0.21.0	UNRELEASED
+0.20.3	2020-06-14
 
  * Add support for remembering remote refs after push/pull.
    (Jelmer Vernooij, #752)

+ 1 - 1
dulwich/__init__.py

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

+ 1 - 1
setup.py

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