diff options
author | Junio C Hamano <gitster@pobox.com> | 2015-01-20 16:54:58 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-01-20 17:35:41 -0800 |
commit | 627736ca799edacf13881da7e671964a0afb94b8 (patch) | |
tree | dfa17d7729033f50b5696b70c44b4b74749a25c7 | |
parent | Merge branch 'jk/http-push-symref-fix' (diff) | |
download | tgif-627736ca799edacf13881da7e671964a0afb94b8.tar.xz |
Git 2.3.0-rc1
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | Documentation/RelNotes/2.3.0.txt | 5 | ||||
-rwxr-xr-x | GIT-VERSION-GEN | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/Documentation/RelNotes/2.3.0.txt b/Documentation/RelNotes/2.3.0.txt index 72ef007a00..11dc73c383 100644 --- a/Documentation/RelNotes/2.3.0.txt +++ b/Documentation/RelNotes/2.3.0.txt @@ -136,6 +136,11 @@ Unless otherwise noted, all the fixes since v2.2 in the maintenance track are contained in this release (see the maintenance releases' notes for details). + * "git http-push" over WebDAV (aka dumb http-push) was broken in + v2.2.2 when parsing a symbolic ref, resulting in a bogus request + that gets rejected by recent versions of cURL library. + (merge f6786c8 jk/http-push-symref-fix later to maint). + * The logic in "git bisect bad HEAD" etc. to avoid forcing the test of the common ancestor of bad and good commits was broken. (merge 07913d5 cc/bisect-rev-parsing later to maint). diff --git a/GIT-VERSION-GEN b/GIT-VERSION-GEN index 57dc9635aa..b8624d3eb9 100755 --- a/GIT-VERSION-GEN +++ b/GIT-VERSION-GEN @@ -1,7 +1,7 @@ #!/bin/sh GVF=GIT-VERSION-FILE -DEF_VER=v2.3.0-rc0 +DEF_VER=v2.3.0-rc1 LF=' ' |