Browse Source

Merge pull request #991 from jelmer/releaser-0.20.45

Release 0.20.45
Jelmer Vernooij 2 years ago
parent
commit
15d7c2085f
3 changed files with 5 additions and 3 deletions
  1. 3 1
      NEWS
  2. 1 1
      dulwich/__init__.py
  3. 1 1
      setup.py

+ 3 - 1
NEWS

@@ -1,4 +1,6 @@
-0.20.45	UNRELEASED
+0.20.46	UNRELEASED
+
+0.20.45	2022-07-15
 
  * Add basic ``dulwich.porcelain.submodule_list`` and ``dulwich.porcelain.submodule_add``
   (Jelmer Vernooij)

+ 1 - 1
dulwich/__init__.py

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

+ 1 - 1
setup.py

@@ -23,7 +23,7 @@ if sys.version_info < (3, 6):
         'For 2.7 support, please install a version prior to 0.20')
 
 
-dulwich_version_string = '0.20.44'
+dulwich_version_string = '0.20.45'
 
 
 class DulwichDistribution(Distribution):