You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/source/changes.rst
+17-3
Original file line number
Diff line number
Diff line change
@@ -5,9 +5,23 @@ Changelog
5
5
1.0.3 - Fixes
6
6
=============
7
7
8
-
* `Commit.diff()` now supports diffing the root commit via `Commit.diff(NULL_TREE)`.
9
-
* `Repo.blame()` now respects `incremental=True`, supporting incremental blames. Incremental blames are slightly faster since they don't include the file's contents in them.
10
-
* IMPORTANT: This release drops support for python 2.6, which is officially deprecated by the python maintainers.
8
+
* `Commit.diff()` now supports diffing the root commit via
9
+
`Commit.diff(NULL_TREE)`.
10
+
* `Repo.blame()` now respects `incremental=True`, supporting incremental
11
+
blames. Incremental blames are slightly faster since they don't include
12
+
the file's contents in them.
13
+
* Fix: `Diff` objects created with patch output will now have their
14
+
`a_path` and `b_path` properties parsed out correctly. Previously, some
15
+
values may have been populated incorrectly when a file was added or
16
+
deleted.
17
+
* IMPORTANT: This release drops support for python 2.6, which is
18
+
officially deprecated by the python maintainers.
19
+
* CRITICAL: `Diff` objects created with patch output will now not carry
20
+
the --- and +++ header lines anymore. All diffs now start with the
21
+
@@ header line directly. Users that rely on the old behaviour can now
22
+
(reliably) read this information from the a_path and b_path properties
0 commit comments