From 8530a8b895d47d234ccaffeca0b866d75fa528b0 Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Wed, 28 Jul 2021 09:54:50 +0800 Subject: prepare next patch release --- VERSION | 2 +- doc/source/changes.rst | 12 +++++++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index a52a6f1a..589ccc9b 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.1.19 +3.1.20 diff --git a/doc/source/changes.rst b/doc/source/changes.rst index fd3fc60d..1d87554c 100644 --- a/doc/source/changes.rst +++ b/doc/source/changes.rst @@ -2,7 +2,17 @@ Changelog ========= -3.1.19 +3.1.20 +====== + +* This is the second typed release with a lot of improvements under the hood. + * Tracking issue: https://github.com/gitpython-developers/GitPython/issues/1095 + +See the following for details: +https://github.com/gitpython-developers/gitpython/milestone/52?closed=1 + + +3.1.19 (YANKED) ====== * This is the second typed release with a lot of improvements under the hood. -- cgit v1.2.1 From 3825cb781ec13db9d4251bb9b0f24d62eecfd0cc Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Wed, 28 Jul 2021 10:00:07 +0800 Subject: fix docs RST!!!! --- doc/source/changes.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/changes.rst b/doc/source/changes.rst index 1d87554c..09da1eb2 100644 --- a/doc/source/changes.rst +++ b/doc/source/changes.rst @@ -13,7 +13,7 @@ https://github.com/gitpython-developers/gitpython/milestone/52?closed=1 3.1.19 (YANKED) -====== +=============== * This is the second typed release with a lot of improvements under the hood. * Tracking issue: https://github.com/gitpython-developers/GitPython/issues/1095 -- cgit v1.2.1 From 005f81ae3daeef3575cba0fd9deb84d15eca5835 Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Wed, 28 Jul 2021 14:12:11 +0800 Subject: More specific version check for ordered dict type Related to https://github.com/gitpython-developers/GitPython/issues/1095#issuecomment-888032424 --- git/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git/config.py b/git/config.py index c4b26ba6..78b93c6f 100644 --- a/git/config.py +++ b/git/config.py @@ -41,7 +41,7 @@ if TYPE_CHECKING: T_ConfigParser = TypeVar('T_ConfigParser', bound='GitConfigParser') -if sys.version_info[:2] < (3, 7): +if sys.version_info[:3] < (3, 7, 2): from collections import OrderedDict OrderedDict_OMD = OrderedDict else: -- cgit v1.2.1 From 76c1c8dd13806d88231c110c47468c71d4b370f1 Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Wed, 28 Jul 2021 14:14:58 +0800 Subject: Revert "More specific version check for ordered dict type" This reverts commit 005f81ae3daeef3575cba0fd9deb84d15eca5835. --- git/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git/config.py b/git/config.py index 78b93c6f..c4b26ba6 100644 --- a/git/config.py +++ b/git/config.py @@ -41,7 +41,7 @@ if TYPE_CHECKING: T_ConfigParser = TypeVar('T_ConfigParser', bound='GitConfigParser') -if sys.version_info[:3] < (3, 7, 2): +if sys.version_info[:2] < (3, 7): from collections import OrderedDict OrderedDict_OMD = OrderedDict else: -- cgit v1.2.1