summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2010-06-25 23:58:24 +0200
committerSebastian Thiel <byronimo@gmail.com>2010-06-25 23:58:24 +0200
commit47e3138ee978ce708a41f38a0d874376d7ae5c78 (patch)
tree0880f5c8f2a375e718c69fcffd15e87b7f4aecae /CHANGES
parent58fb1187b7b8f1e62d3930bdba9be5aba47a52c6 (diff)
downloadgitpython-47e3138ee978ce708a41f38a0d874376d7ae5c78.tar.gz
Adjusted all files to (hopefully) deal with the fact that all objects now use 20 byte sha's internally as it is closer to the GitDB implementation
Switched all remaining files back to tabs Adjusted all remaining docstrings to suit the sphinx doc convention - its likely that there are many of docstring syntax errors though
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES5
1 files changed, 5 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index a1b9b2ba..19c99f08 100644
--- a/CHANGES
+++ b/CHANGES
@@ -12,6 +12,11 @@ CHANGES
Instead of raising GitCommandError it raises UnmergedEntriesError
* diff.Diff.null_hex_sha renamed to NULL_HEX_SHA, to be conforming with
the naming in the Object base class
+ * Object instances, and everything derived from it, now use binary sha's internally. The 'sha' member was removed, in favor of the 'binsha' member.
+ An 'hexsha' property is available for convenient conversions.
+ They may only be initialized using their binary shas, reference names or revision specs are not allowed anymore.
+ * The .data attribute was removed from the Object type, it is only available
+ on the Blob type.
0.2 Beta 2