Skip to content

Commit 7e4eb21

Browse files
committed
Prepare for 1.7.3.3
Signed-off-by: Junio C Hamano <[email protected]>
2 parents be1b055 + 2850c1a commit 7e4eb21

File tree

5 files changed

+77
-1
lines changed

5 files changed

+77
-1
lines changed

Documentation/RelNotes/1.7.0.8.txt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
Git v1.7.0.8 Release Notes
2+
==========================
3+
4+
This is primarily to backport support for the new "add.ignoreErrors"
5+
name given to the existing "add.ignore-errors" configuration variable.
6+
7+
The next version, Git 1.7.4, and future versions, will support both
8+
old and incorrect name and the new corrected name, but without this
9+
backport, users who want to use the new name "add.ignoreErrors" in
10+
their repositories cannot use older versions of Git.

Documentation/RelNotes/1.7.1.3.txt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
Git v1.7.1.3 Release Notes
2+
==========================
3+
4+
This is primarily to backport support for the new "add.ignoreErrors"
5+
name given to the existing "add.ignore-errors" configuration variable.
6+
7+
The next version, Git 1.7.4, and future versions, will support both
8+
old and incorrect name and the new corrected name, but without this
9+
backport, users who want to use the new name "add.ignoreErrors" in
10+
their repositories cannot use older versions of Git.

Documentation/RelNotes/1.7.2.4.txt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
Git v1.7.2.4 Release Notes
2+
==========================
3+
4+
This is primarily to backport support for the new "add.ignoreErrors"
5+
name given to the existing "add.ignore-errors" configuration variable.
6+
7+
The next version, Git 1.7.4, and future versions, will support both
8+
old and incorrect name and the new corrected name, but without this
9+
backport, users who want to use the new name "add.ignoreErrors" in
10+
their repositories cannot use older versions of Git.

Documentation/RelNotes/1.7.3.3.txt

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
Git v1.7.3.3 Release Notes
2+
==========================
3+
4+
Fixes since v1.7.3.2
5+
--------------------
6+
7+
* "git apply" segfaulted when a bogus input is fed to it.
8+
9+
* Running "git cherry-pick --ff" on a root commit segfaulted.
10+
11+
* "diff", "blame" and friends incorrectly applied textconv filters to
12+
symlinks.
13+
14+
* Highlighting of whitespace breakage in "diff" output was showing
15+
incorrect amount of whitespaces when blank-at-eol is set and the line
16+
consisted only of whitespaces and a TAB.
17+
18+
* "diff" was overly inefficient when trying to find the line to use for
19+
the function header (i.e. equivalent to --show-c-function of GNU diff).
20+
21+
* "git imap-send" depends on libcrypto but our build rule relied on the
22+
linker to implicitly link it via libssl, which was wrong.
23+
24+
* "git merge-file" can be called from within a subdirectory now.
25+
26+
* "git repack -f" expanded and recompressed non-delta objects in the
27+
existing pack, which was wasteful. Use new "-F" option if you really
28+
want to (e.g. when changing the pack.compression level).
29+
30+
* "git rev-list --format="...%x00..." incorrectly chopped its output
31+
at NUL.
32+
33+
* "git send-email" did not correctly remove duplicate mail addresses from
34+
the Cc: header that appear on the To: header.
35+
36+
* The completion script (in contrib/completion) ignored lightweight tags
37+
in __git_ps1().
38+
39+
* "git-blame" mode (in contrib/emacs) didn't say (require 'format-spec)
40+
even though it depends on it; it didn't work with Emacs 22 or older
41+
unless Gnus is used.
42+
43+
* "git-p4" (in contrib/) did not correctly handle deleted files.
44+
45+
46+
Other minor fixes and documentation updates may be included.

GIT-VERSION-GEN

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
GVF=GIT-VERSION-FILE
4-
DEF_VER=v1.7.3.2
4+
DEF_VER=v1.7.3.3
55

66
LF='
77
'

0 commit comments

Comments
 (0)