Browse Source

Bump version to 0.20.14.

Jelmer Vernooij 4 years ago
parent
commit
e56ca61450
3 changed files with 9 additions and 5 deletions
  1. 7 3
      NEWS
  2. 1 1
      dulwich/__init__.py
  3. 1 1
      setup.py

+ 7 - 3
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)

+ 1 - 1
dulwich/__init__.py

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

+ 1 - 1
setup.py

@@ -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):