NEWS 1.9 KB

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