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