diff options
Diffstat (limited to 'doc/source/changes.rst')
-rw-r--r-- | doc/source/changes.rst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/source/changes.rst b/doc/source/changes.rst index 924743bd..b7479e4f 100644 --- a/doc/source/changes.rst +++ b/doc/source/changes.rst @@ -2,10 +2,18 @@ Changelog ========= +0.3.4 - Python 3 Support +======================== +* Internally, hexadecimal SHA1 are treated as ascii encoded strings. Binary SHA1 are treated as bytes. +* Id attribute of Commit objects is now `hexsha`, instead of `binsha`. The latter makes no sense in python 3 and I see no application of it anyway besides its artificial usage in test cases. +* **IMPORTANT**: If you were using the config_writer(), you implicitly relied on __del__ to work as expected to flush changes. To be sure changes are flushed under PY3, you will have to call the new `release()` method to trigger a flush. For some reason, __del__ is not called necessarily anymore when a symbol goes out of scope. +* The `Tree` now has a `.join('name')` method which is equivalent to `tree / 'name'` + 0.3.3 ===== * When fetching, pulling or pushing, and an error occours, it will not be reported on stdout anymore. However, if there is a fatal error, it will still result in a GitCommandError to be thrown. This goes hand in hand with improved fetch result parsing. * Code Cleanup (in preparation for python 3 support) + * Applied autopep8 and cleaned up code * Using python logging module instead of print statments to signal certain kinds of errors |