aboutsummaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2009-10-08 17:14:07 +0200
committerSebastian Thiel <byronimo@gmail.com>2009-10-08 22:59:54 +0200
commit19533ffadbcc959f12bf51488cf66f0715bec4c1 (patch)
treebf93f8130fae8a2edf3f2e766e93e6266a381309 /CHANGES
parent600bd69a81e4858293e6bc791b95568f0a370ae3 (diff)
downloadGitPython-19533ffadbcc959f12bf51488cf66f0715bec4c1.tar.gz
GitPython-19533ffadbcc959f12bf51488cf66f0715bec4c1.zip
Fixed Diff class which used Commits instead of Blobs - as Blobs contain the path ( in the 'name' member variable ), the a|b_path members of Diff have been removed. Tests were adjusted and run
Diff docs have been updated to provide a little more information on specifics cases
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES14
1 files changed, 14 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index 8c67a7e5..63ca47e8 100644
--- a/CHANGES
+++ b/CHANGES
@@ -49,6 +49,20 @@ Repo
* Corrected ``commits_between`` always returning None instead of the reversed
list.
+
+0.1.X
+=====
+( Future Release )
+General
+-------
+* See changes in Diff class as your client code needs adjustments to work with it
+
+Diff
+----
+* Members a a_commit and b_commit renamed to a_blob and b_blob - they are populated
+ with Blob objects if possible
+* Members a_path and b_path removed as this information is kept in the blobs
+
0.1.5
=====