# HG changeset patch # User Jelmer Vernooij # Date 1606431089 0 # Thu Nov 26 22:51:29 2020 +0000 # Node ID a3ce2c3589312dd0cf2bfa2fc0f4cc84306f6e9a # Parent 9189631abb9776f76fbb6e419186386385b3fe8b Bump version to 0.20.14. diff --git a/NEWS b/NEWS --- a/NEWS +++ b/NEWS @@ -1,3 +1,10 @@ +0.20.14 2020-11-26 + + * Fix some stash functions on Python 3. (Peter Rowlands) + + * Fix handling of relative paths in alternates files on Python 3. + (Georges Racinet) + 0.20.13 2020-11-22 * Add py.typed to allow type checking. (David Caro) @@ -5,9 +12,6 @@ * Add tests demonstrating a bug in the walker code. (Doug Hellman) - * Fix handling of relative paths in alternates files on Python 3. - (Georges Racinet) - 0.20.11 2020-10-30 * Fix wheels build on Linux. (Ruslan Kuprieiev) 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, 13) +__version__ = (0, 20, 14) 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.13' +dulwich_version_string = '0.20.14' class DulwichDistribution(Distribution):