NEWS 1.5 KB

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