# HG changeset patch # User Jelmer Vernooij # Date 1608683612 0 # Wed Dec 23 00:33:32 2020 +0000 # Node ID 2d8c5aca2b6ceaab2812826f14eb611c628a658a # Parent 22e3cdc8445eb264d51a3e9b148b0473cec63ac1 Release 0.20.15 diff --git a/NEWS b/NEWS --- a/NEWS +++ b/NEWS @@ -1,4 +1,4 @@ -0.20.15 UNRELEASED +0.20.15 2020-12-23 * Add some functions for parsing and writing bundles. (Jelmer Vernooij) diff --git a/dulwich/__init__.py b/dulwich/__init__.py --- a/dulwich/__init__.py +++ b/dulwich/__init__.py @@ -22,4 +22,4 @@ """Python implementation of the Git file formats and protocols.""" -__version__ = (0, 20, 14) +__version__ = (0, 20, 15) diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ '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):