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