Add --without-speedups option.
[jelmer/dulwich-libgit2.git] / NEWS
1 0.4.2   UNRELEASED
2
3  BUG FIXES
4
5   * Support custom fields in commits.
6
7  FEATURES
8
9   * --without-speedups option to setup.py to allow building/installing 
10     without the C extensions. (Hal Wine, Jelmer Vernooij)
11
12 0.4.1   2010-01-03
13
14  FEATURES
15
16   * Add ObjectStore.iter_tree_contents()
17
18   * Add Index.changes_from_tree()
19
20   * Add ObjectStore.tree_changes()
21
22   * Add functionality for writing patches in dulwich.patch.
23
24 0.4.0   2009-10-07
25
26  DOCUMENTATION
27
28   * Added tutorial.
29
30  API CHANGES
31
32   * dulwich.object_store.tree_lookup_path will now return the mode and 
33     sha of the object found rather than the object itself.
34
35  BUG FIXES
36
37   * Use binascii.hexlify / binascii.unhexlify for better performance.
38
39   * Cope with extra unknown data in index files by ignoring it (for now).
40
41   * Add proper error message when server unexpectedly hangs up. (#415843)
42
43   * Correctly write opcode for equal in create_delta.
44
45 0.3.3   2009-07-23
46
47  FEATURES
48
49   * Implement ShaFile.__hash__().
50
51   * Implement Tree.__len__()
52
53  BUG FIXES
54   
55   * Check for 'objects' and 'refs' directories
56     when looking for a Git repository. (#380818)
57
58 0.3.2   2009-05-20
59
60  BUG FIXES
61
62   * Support the encoding field in Commits.
63   
64   * Some Windows compatibility fixes.
65
66   * Fixed several issues in commit support.
67
68  FEATURES
69
70   * Basic support for handling submodules.
71
72 0.3.1   2009-05-13
73
74  FEATURES
75
76   * Implemented Repo.__getitem__, Repo.__setitem__ and Repo.__delitem__ to 
77     access content.
78
79  API CHANGES
80
81   * Removed Repo.set_ref, Repo.remove_ref, Repo.tags, Repo.get_refs and 
82     Repo.heads in favor of Repo.refs, a dictionary-like object for accessing
83         refs.
84
85  BUG FIXES
86
87   * Removed import of 'sha' module in objects.py, which was causing 
88     deprecation warnings on Python 2.6.
89
90 0.3.0   2009-05-10
91
92  FEATURES
93
94   * A new function `commit_tree' has been added that can commit a tree 
95     based on an index.
96
97  BUG FIXES
98
99   * The memory usage when generating indexes has been significantly reduced.
100  
101   * A memory leak in the C implementation of parse_tree has been fixed.
102
103   * The send-pack smart server command now works. (Thanks Scott Chacon)
104
105   * The handling of short timestamps (less than 10 digits) has been fixed.
106
107   * The handling of timezones has been fixed.
108
109 0.2.1   2009-04-30
110
111  BUG FIXES
112
113   * Fix compatibility with Python2.4.
114
115 0.2.0   2009-04-30
116
117  FEATURES
118
119   * Support for activity reporting in smart protocol client.
120
121   * Optional C extensions for better performance in a couple of 
122     places that are performance-critical.
123
124 0.1.1   2009-03-13
125
126  BUG FIXES
127
128   * Fixed regression in Repo.find_missing_objects()
129
130   * Don't fetch ^{} objects from remote hosts, as requesting them 
131     causes a hangup.
132
133   * Always write pack to disk completely before calculating checksum.
134
135  FEATURES
136
137   * Allow disabling thin packs when talking to remote hosts.
138
139 0.1.0   2009-01-24
140
141  * Initial release.