Jelmer Vernooij 16 lat temu
rodzic
commit
2e636c64d2
4 zmienionych plików z 23 dodań i 4 usunięć
  1. 19 0
      NEWS
  2. 1 1
      dulwich/__init__.py
  3. 2 2
      dulwich/repo.py
  4. 1 1
      setup.py

+ 19 - 0
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

+ 1 - 1
dulwich/__init__.py

@@ -27,4 +27,4 @@ import protocol
 import repo
 import server
 
-__version__ = (0, 2, 2)
+__version__ = (0, 3, 0)

+ 2 - 2
dulwich/repo.py

@@ -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):

+ 1 - 1
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',