CHANGES 1.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. Change log
  2. ==========
  3. Version 0.9 (2013-03-23)
  4. - Supports reading context diff via ``filterdiff`` (patchutils)
  5. - Fixed a diff parser bug which misread git commit message as common line
  6. - Lots of code refactor
  7. Version 0.8 (2013-03-13)
  8. - Parser is now robust enough to handle dangling headers and short patch
  9. - PEP8 (with minor own flavors) and other code lint
  10. - Change 'Development Status' to stable
  11. Version 0.7.1 (2013-02-25)
  12. - Handle 'Binary files ... differ'
  13. - Document update for known issues
  14. Version 0.7 (2013-02-23)
  15. - Support reading diff or log for given files/dirs in workspace
  16. - Support diff generated from ``diff -ru dir1 dir2``
  17. - Usage change: reading a patch and comparing two files need stdin redirect
  18. Version 0.6 (2013-02-20)
  19. - A few performance tuning and code clean up
  20. - Add unit test cases with coverage 70%
  21. - Show merge history in svn log
  22. Version 0.5.1 (2013-02-19)
  23. - Fixed incorrect yield on diff missing eof
  24. - Fixed a bug in diff format probe
  25. - Handle keyboard interrupt and large diffs in non-color mode
  26. - Code clean up
  27. Version 0.5 (2013-02-18)
  28. - Support read output from ``svn diff --log`` and ``hg log -p``
  29. - Streamline reading large patch set
  30. - New ``--log (-l)`` option to read revision control diff log (thanks to
  31. `Steven Myint`_)
  32. Version 0.4 (2013-02-16)
  33. - New option *-c WHEN* (*--color WHEN*) to support auto test
  34. - Auto regression test now on Travis
  35. Version 0.3 (2013-02-07)
  36. - Support compare two files (wrapper of diff)
  37. Version 0.2 (2013-02-06)
  38. - Move cdiff.py to top dir for better meta info management
  39. Version 0.1 (2013-02-05)
  40. - New --version option
  41. - setup.py now read version from source code
  42. Version 0.0.4 (2013-02-04)
  43. - Add CHANGES for history track and better versioning
  44. Version 0.0.3 (2013-02-04)
  45. - Publish on PyPI, supports read patch from file, pipe and diff output from
  46. revision tools (thanks to `Steven Myint`_)
  47. .. _Steven Myint: https://github.com/myint