NEWS 1.8 KB

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