From ad01078dbf56e807b581491afd0422b961fe8afc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jelmer=20Vernoo=C4=B3?= Date: Wed, 3 Mar 2021 13:31:34 +0000 Subject: [PATCH] Release 0.20.20. --- NEWS | 2 +- dulwich/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/NEWS b/NEWS index 864cb329f..a2a0fd3f4 100644 --- a/NEWS +++ b/NEWS @@ -1,4 +1,4 @@ -0.20.20 UNRELEASED +0.20.20 2021-03-03 * Implement ``Stash.drop``. (Peter Rowlands) diff --git a/dulwich/__init__.py b/dulwich/__init__.py index aa6e52073..76bbc4860 100644 --- a/dulwich/__init__.py +++ b/dulwich/__init__.py @@ -22,4 +22,4 @@ """Python implementation of the Git file formats and protocols.""" -__version__ = (0, 20, 19) +__version__ = (0, 20, 20) diff --git a/setup.py b/setup.py index be7eb11da..b2469427a 100755 --- 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.19' +dulwich_version_string = '0.20.20' class DulwichDistribution(Distribution):