diff options
author | adam <adam@pkgsrc.org> | 2022-05-09 12:00:15 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2022-05-09 12:00:15 +0000 |
commit | 50864274c7649e1bef73dada625dbb9c3f00374a (patch) | |
tree | 104ea29dbc6752ccf93de84adbd3583a4a4bd80a | |
parent | 4a108f0fe80d6397e41cb05cc0a51ac7b6e2cb21 (diff) | |
download | pkgsrc-50864274c7649e1bef73dada625dbb9c3f00374a.tar.gz |
git: updated to 2.36.1
Git v2.36.1 Release Notes
=========================
Fixes since v2.36
-----------------
* "git submodule update" without pathspec should silently skip an
uninitialized submodule, but it started to become noisy by mistake.
* "diff-tree --stdin" has been broken for about a year, but 2.36
release broke it even worse by breaking running the command with
<pathspec>, which in turn broke "gitk" and got noticed. This has
been corrected by aligning its behaviour to that of "log".
* Regression fix for 2.36 where "git name-rev" started to sometimes
reference strings after they are freed.
* "git show <commit1> <commit2>... -- <pathspec>" lost the pathspec
when showing the second and subsequent commits, which has been
corrected.
* "git fast-export -- <pathspec>" lost the pathspec when showing the
second and subsequent commits, which has been corrected.
* "git format-patch <args> -- <pathspec>" lost the pathspec when
showing the second and subsequent commits, which has been
corrected.
* Get rid of a bogus and over-eager coccinelle rule.
* Correct choices of C compilers used in various CI jobs.
Also contains minor documentation updates and code clean-ups.
-rw-r--r-- | devel/git-base/distinfo | 8 | ||||
-rw-r--r-- | devel/git/Makefile.version | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/devel/git-base/distinfo b/devel/git-base/distinfo index 6ecb377fb01..b2f38e1b6d4 100644 --- a/devel/git-base/distinfo +++ b/devel/git-base/distinfo @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.118 2022/05/03 01:26:55 gutteridge Exp $ +$NetBSD: distinfo,v 1.119 2022/05/09 12:00:16 adam Exp $ -BLAKE2s (git-2.36.0.tar.xz) = 3d324b2f7670a2f59a4b0a8f4a280f72d93f062e0eb85104f68e021b6e4c7f90 -SHA512 (git-2.36.0.tar.xz) = dce0d7dbe684af070271830a01bf1b9cc289182f5106f6e3303b1b3a0d5dc74bebf6ac0174373db05a28f5acc62acb095bc9385dabeeecc1d6e8567dce29b766 -Size (git-2.36.0.tar.xz) = 7003024 bytes +BLAKE2s (git-2.36.1.tar.xz) = cb270cd6a16e2669772132c0d8b816b449314b790a9eee873432157a2207ac0c +SHA512 (git-2.36.1.tar.xz) = 459432bd0c1d5a87c828a6fbf6d3473f14bf6b95783b3f27ea4f3af1ba9fd0e712a96a41276a16c6ebeb7ac3583a5f445eedd0a9e19fe160c2c8e309ec58818e +Size (git-2.36.1.tar.xz) = 7004044 bytes SHA1 (patch-Documentation_Makefile) = 6025adac0fbb4b403f3954e6dac9d690dfb22daa SHA1 (patch-Makefile) = e3e07365a22c8612e0f5ff3b7befb2bdd788dfb8 SHA1 (patch-config.mak.uname) = 5316873147acf5b6ef29e426946280bb6441c886 diff --git a/devel/git/Makefile.version b/devel/git/Makefile.version index dd53c116962..7dbef8b7c96 100644 --- a/devel/git/Makefile.version +++ b/devel/git/Makefile.version @@ -1,7 +1,7 @@ -# $NetBSD: Makefile.version,v 1.104 2022/05/03 01:26:55 gutteridge Exp $ +# $NetBSD: Makefile.version,v 1.105 2022/05/09 12:00:15 adam Exp $ # # used by devel/git/Makefile.common # used by devel/git-cvs/Makefile # used by devel/git-svn/Makefile -GIT_VERSION= 2.36.0 +GIT_VERSION= 2.36.1 |