Explorar el Código

Release 0.20.46.

Jelmer Vernooij hace 2 años
padre
commit
b66c25ee33
Se han modificado 3 ficheros con 3 adiciones y 3 borrados
  1. 1 1
      NEWS
  2. 1 1
      dulwich/__init__.py
  3. 1 1
      setup.py

+ 1 - 1
NEWS

@@ -1,4 +1,4 @@
-0.20.46	UNRELEASED
+0.20.46	2022-09-06
 
  * Apply insteadOf to rsync-style location strings
    (previously it was just applied to URLs).

+ 1 - 1
dulwich/__init__.py

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

+ 1 - 1
setup.py

@@ -15,7 +15,7 @@ if sys.version_info < (3, 6):
         'For 2.7 support, please install a version prior to 0.20')
 
 
-dulwich_version_string = '0.20.45'
+dulwich_version_string = '0.20.46'
 
 
 class DulwichDistribution(Distribution):