CHANGES 2.6KB

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