2d8c5aca2b6c draft — Jelmer Vernooij 3 years ago
Release 0.20.15
3 files changed, 3 insertions(+), 3 deletions(-)

M NEWS
M dulwich/__init__.py
M setup.py
M NEWS +1 -1
@@ 1,4 1,4 @@ 
-0.20.15	UNRELEASED
+0.20.15	2020-12-23
 
  * Add some functions for parsing and writing bundles.
    (Jelmer Vernooij)

          
M dulwich/__init__.py +1 -1
@@ 22,4 22,4 @@ 
 
 """Python implementation of the Git file formats and protocols."""
 
-__version__ = (0, 20, 14)
+__version__ = (0, 20, 15)

          
M setup.py +1 -1
@@ 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.14'
+dulwich_version_string = '0.20.15'
 
 
 class DulwichDistribution(Distribution):