1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
|
History
-------
0.7.5 - 2023-03-09
------------------
* Fixed issue with spaces in filename when using custom git prefix.
* Support binary patch format.
0.7.4 - 2022-06-26
------------------
* Fixed git diff parsing issues (filename with spaces, only one added/deleted file).
0.7.3 - 2022-02-06
------------------
* Fixed RE_BINARY_DIFF regex to make it a raw string.
0.7.2 - 2022-01-28
------------------
* Fixed issue when parsing git diff header generated with `--no-prefix`.
0.7.1 - 2022-01-27
------------------
* Improved git added/deleted file detection.
* Added `newline` optional param when parsing `from_filename`.
0.7.0 - 2021-08-16
------------------
* Fixed issues handling multiple git renames.
* Renamed files return target filename as PatchedFile.path.
* Fixed error when first change is a binary file.
* Added source code type hints.
0.6.0 - 2020-05-07
----------------
* Updated PatchSet constructor to accept an optional (default to False)
metadata_only parameter to only keep diff metadata information without
the diff text data (better performance).
* Identify and track changed binary files.
* Added support for git rename syntax.
0.5.5 - 2018-01-03
------------------
* Updated PatchSet constructor to accept string data.
* Added support to parse extended patch info.
0.5.4 - 2017-05-26
------------------
* Added PatchSet.from_string helper.
* Do not install tests as top-level package.
0.5.3 - 2017-04-10
------------------
* Re-released 0.5.2 as 0.5.3 because of issues with PyPI.
0.5.2 - 2016-02-02
------------------
* Added diff line number to Line metadata.
* Optimizations for large hunks.
* Fix for git empty new lines.
* Added (optional) errors parameter to PatchSet.from_filename,
to specify how to handle encoding errors.
0.5.1 - 2015-01-18
------------------
* Added (optional) encoding parameter to PatchSet.
* Added support to get any iterable as PatchSet diff argument.
0.5 - 2014-12-14
----------------
* Release on PyPI.
|