summaryrefslogtreecommitdiff
path: root/doc/source/changes.rst
diff options
context:
space:
mode:
authorVincent Driessen <me@nvie.com>2016-04-19 21:35:39 +0200
committerVincent Driessen <me@nvie.com>2016-04-19 21:35:39 +0200
commit4adafc5a99947301ca0ce40511991d6d54c57a41 (patch)
treee7cf8a66b178baf8fa4fcfddc46f2134c48042ab /doc/source/changes.rst
parent76e19e4221684f24ef881415ec6ccb6bab6eb8e8 (diff)
parent3297fe50067da728eb6f3f47764efb223e0d6ea4 (diff)
downloadgitpython-4adafc5a99947301ca0ce40511991d6d54c57a41.tar.gz
Merge pull request #408 from nvie/master
Add support for diffing against root commit
Diffstat (limited to 'doc/source/changes.rst')
-rw-r--r--doc/source/changes.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/source/changes.rst b/doc/source/changes.rst
index 23954c7f..4fdf39ca 100644
--- a/doc/source/changes.rst
+++ b/doc/source/changes.rst
@@ -4,6 +4,9 @@ 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.
1.0.2 - Fixes