NEWS 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. 0.3.2 UNRELEASED
  2. BUG FIXES
  3. * Support the encoding field in Commits.
  4. * Some Windows compatibility fixes.
  5. 0.3.1 2009-05-13
  6. FEATURES
  7. * Implemented Repo.__getitem__, Repo.__setitem__ and Repo.__delitem__ to
  8. access content.
  9. API CHANGES
  10. * Removed Repo.set_ref, Repo.remove_ref, Repo.tags, Repo.get_refs and
  11. Repo.heads in favor of Repo.refs, a dictionary-like object for accessing
  12. refs.
  13. BUG FIXES
  14. * Removed import of 'sha' module in objects.py, which was causing
  15. deprecation warnings on Python 2.6.
  16. 0.3.0 2009-05-10
  17. FEATURES
  18. * A new function `commit_tree' has been added that can commit a tree
  19. based on an index.
  20. BUG FIXES
  21. * The memory usage when generating indexes has been significantly reduced.
  22. * A memory leak in the C implementation of parse_tree has been fixed.
  23. * The send-pack smart server command now works. (Thanks Scott Chacon)
  24. * The handling of short timestamps (less than 10 digits) has been fixed.
  25. * The handling of timezones has been fixed.
  26. 0.2.1 2009-04-30
  27. BUG FIXES
  28. * Fix compatibility with Python2.4.
  29. 0.2.0 2009-04-30
  30. FEATURES
  31. * Support for activity reporting in smart protocol client.
  32. * Optional C extensions for better performance in a couple of
  33. places that are performance-critical.
  34. 0.1.1 2009-03-13
  35. BUG FIXES
  36. * Fixed regression in Repo.find_missing_objects()
  37. * Don't fetch ^{} objects from remote hosts, as requesting them
  38. causes a hangup.
  39. * Always write pack to disk completely before calculating checksum.
  40. FEATURES
  41. * Allow disabling thin packs when talking to remote hosts.
  42. 0.1.0 2009-01-24
  43. * Initial release.