summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent Driessen <me@nvie.com>2016-04-15 00:58:18 +0200
committerVincent Driessen <me@nvie.com>2016-04-19 21:46:15 +0200
commit55d40df99085036ed265fbc6d24d90fbb1a24f95 (patch)
treef506b8eeca4b9741493054d47728aaee82b38e32
parente77128e5344ce7d84302facc08d17c3151037ec3 (diff)
downloadgitpython-55d40df99085036ed265fbc6d24d90fbb1a24f95.tar.gz
Update changelog
-rw-r--r--doc/source/changes.rst20
1 files changed, 17 insertions, 3 deletions
diff --git a/doc/source/changes.rst b/doc/source/changes.rst
index 4fdf39ca..734c479c 100644
--- a/doc/source/changes.rst
+++ b/doc/source/changes.rst
@@ -5,9 +5,23 @@ Changelog
1.0.3 - Fixes
=============
-* `Commit.diff()` now supports diffing the root commit via `Commit.diff(NULL_TREE)`.
-* `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.
-* IMPORTANT: This release drops support for python 2.6, which is officially deprecated by the python maintainers.
+* `Commit.diff()` now supports diffing the root commit via
+ `Commit.diff(NULL_TREE)`.
+* `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.
+* Fix: `Diff` objects created with patch output will now have their
+ `a_path` and `b_path` properties parsed out correctly. Previously, some
+ values may have been populated incorrectly when a file was added or
+ deleted.
+* IMPORTANT: This release drops support for python 2.6, which is
+ officially deprecated by the python maintainers.
+* CRITICAL: `Diff` objects created with patch output will now not carry
+ the --- and +++ header lines anymore. All diffs now start with the
+ @@ header line directly. Users that rely on the old behaviour can now
+ (reliably) read this information from the a_path and b_path properties
+ without having to parse these lines manually.
+
1.0.2 - Fixes
=============