diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2016-06-20 06:46:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-20 06:46:28 +0200 |
commit | e9405ac82af3a804dba1f9797bdb34815e1d7a18 (patch) | |
tree | 4eea60057ca88dbbd64ec5784142045ece03a124 /doc/source | |
parent | 930d03fb077f531b3fbea1b4da26a96153165883 (diff) | |
parent | 3ee291c469fc7ea6065ed22f344ed3f2792aa2ca (diff) | |
download | gitpython-e9405ac82af3a804dba1f9797bdb34815e1d7a18.tar.gz |
Merge pull request #474 from gitpython-developers/keep-raw-bytes-on-diffs
Store raw path bytes in Diff instances
Diffstat (limited to 'doc/source')
-rw-r--r-- | doc/source/changes.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/source/changes.rst b/doc/source/changes.rst index 3f5b8c50..492d1055 100644 --- a/doc/source/changes.rst +++ b/doc/source/changes.rst @@ -5,6 +5,9 @@ Changelog 2.0.6 - Fixes and Features ========================== +* API: Diffs now have `a_rawpath`, `b_rawpath`, `raw_rename_from`, + `raw_rename_to` properties, which are the raw-bytes equivalents of their + unicode path counterparts. * Fix: TypeError about passing keyword argument to string decode() on Python 2.6. * Feature: `setUrl API on Remotes <https://github.com/gitpython-developers/GitPython/pull/446#issuecomment-224670539>`_ |