CHANGES 1.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. Change log
  2. ==========
  3. Version 0.7 (2013-02-23)
  4. - Support reading diff or log for given files/dirs in workspace
  5. - Support diff generated from ``diff -ru dir1 dir2``
  6. - Usage change: reading a patch and comparing two files need stdin redirect
  7. Version 0.6 (2013-02-20)
  8. - A few performance tuning and code clean up
  9. - Add unit test cases with coverage 70%
  10. - Show merge history in svn log
  11. Version 0.5.1 (2013-02-19)
  12. - Fixed incorrect yield on diff missing eof
  13. - Fixed a bug in diff format probe
  14. - Handle keyboard interrupt and large diffs in non-color mode
  15. - Code clean up
  16. Version 0.5 (2013-02-18)
  17. - Support read output from ``svn diff --log`` and ``hg log -p``
  18. - Streamline reading large patch set
  19. - New ``--log (-l)`` option to read revision control diff log (thanks to
  20. `Steven Myint <https://github.com/myint>`_)
  21. Version 0.4 (2013-02-16)
  22. - New option *-c WHEN* (*--color WHEN*) to support auto test
  23. - Auto regression test now on Travis
  24. Version 0.3 (2013-02-07)
  25. - Support compare two files (wrapper of diff)
  26. Version 0.2 (2013-02-06)
  27. - Move cdiff.py to top dir for better meta info management
  28. Version 0.1 (2013-02-05)
  29. - New --version option
  30. - setup.py now read version from source code
  31. Version 0.0.4 (2013-02-04)
  32. - Add CHANGES for history track and better versioning
  33. Version 0.0.3 (2013-02-04)
  34. - Publish on PyPI, supports read patch from file, pipe and diff output from
  35. revision tools (thanks to `Steven Myint <https://github.com/myint>`_)