NEWS 1.9 KB

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