Release 0.3.0. dulwich-0.3.0
authorJelmer Vernooij <jelmer@samba.org>
Sun, 10 May 2009 14:04:37 +0000 (16:04 +0200)
committerJelmer Vernooij <jelmer@samba.org>
Sun, 10 May 2009 14:04:37 +0000 (16:04 +0200)
NEWS
dulwich/__init__.py
dulwich/repo.py
setup.py

diff --git a/NEWS b/NEWS
index 6c472140755dab125a6f7ec73ad5a9fc5568ce72..22047a779d71392330810d4a1792645dc2fa87e4 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,22 @@
+0.3.0  2009-05-10
+
+ FEATURES
+
+  * A new function `commit_tree' has been added that can commit a tree 
+    based on an index.
+
+ BUG FIXES
+
+  * The memory usage when generating indexes has been significantly reduced.
+  * A memory leak in the C implementation of parse_tree has been fixed.
+
+  * The send-pack smart server command now works. (Thanks Scott Chacon)
+
+  * The handling of short timestamps (less than 10 digits) has been fixed.
+
+  * The handling of timezones has been fixed.
+
 0.2.1  2009-04-30
 
  BUG FIXES
index c25704496df652c8a58eeaf6e22eceabae70c786..19206f7dfc369bcaa7ff3855b0cdedc39d8f5d51 100644 (file)
@@ -27,4 +27,4 @@ import protocol
 import repo
 import server
 
-__version__ = (0, 2, 2)
+__version__ = (0, 3, 0)
index fc581508e2da1f670bb2df39f2c964fe7448d74c..9d651f9b2b7dfbf8a1a1f9097c4951f0cc8c938c 100644 (file)
@@ -72,11 +72,11 @@ class Tags(RefsContainer):
     """Tags container."""
 
     def __init__(self, tagdir, tags):
-        super(Tags, self).__init__(tagdir)
+        RefsContainer.__init__(self, tagdir)
         self.tags = tags
 
     def __setitem__(self, name, value):
-        super(Tags, self)[name] = value
+        RefsContainer.__setitem__(self, name, value)
         self.tags[name] = value
 
     def __getitem__(self, name):
index f89d621d99efa6e7b88c3fc7322c11134338c657..e2ee24361ce328b67d49ea24e9c6b634ed153577 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -5,7 +5,7 @@
 from distutils.core import setup
 from distutils.extension import Extension
 
-dulwich_version_string = '0.2.2'
+dulwich_version_string = '0.3.0'
 
 setup(name='dulwich',
       description='Pure-Python Git Library',