a3ce2c358931 draft — Jelmer Vernooij 3 years ago
Bump version to 0.20.14.
3 files changed, 9 insertions(+), 5 deletions(-)

M NEWS
M dulwich/__init__.py
M setup.py
M NEWS +7 -3
@@ 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 @@ 0.20.13	2020-11-22
  * 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)

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

          
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.13'
+dulwich_version_string = '0.20.14'
 
 
 class DulwichDistribution(Distribution):