summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2011-02-13 16:50:58 +0000
committerLars Wirzenius <liw@liw.fi>2011-02-13 16:50:58 +0000
commit9be0fc7ea270c74758389681e4908ff3d396a3a2 (patch)
tree981e620bd46af97263f98534fab1211903448e3f
parentf89357a1c9f8650e1b858f4fe34b99c6a42880f9 (diff)
downloadlarch-9be0fc7ea270c74758389681e4908ff3d396a3a2.tar.gz
Release version 0.17.version_0_17
-rw-r--r--NEWS15
-rw-r--r--README1
-rw-r--r--btree/__init__.py2
-rw-r--r--debian/changelog6
4 files changed, 23 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 67bdd9b..c8d2450 100644
--- a/NEWS
+++ b/NEWS
@@ -8,6 +8,21 @@ copy-on-write B-tree, designed by Odah Rodeh.
Version 0.16.2, released 2011-01-07
---------------------------------
+* Use the python-tracing library to add logging of node creation and
+ removal and other operations. The library makes it possible for the
+ user to enable and disable logging for specific code modules, and
+ defaults to being disabled, so that the logging will not affect
+ normal execution speed.
+* `codec-speed` now reports MiB/s, instead of seconds, giving an easy
+ way to compare encoding and decoding speeds with, say, hard disk
+ or network speeds.
+* B-tree now again modifies nodes, and does so by first removing
+ them from the node store's upload queue. This returns the library
+ back to useful speeds.
+
+Version 0.16.2, released 2011-01-07
+---------------------------------
+
* Really fix problems with nodes growing too big while in the upload
queue. The previous fixes meant well, but didn't really do the trick.
Now we stop modifying nodes at all while in the upload queue, which
diff --git a/README b/README
index 1e7e815..f3b8fc0 100644
--- a/README
+++ b/README
@@ -60,6 +60,7 @@ and LRUCache, and extrautils packages:
* <http://liw.fi/lru/>
* <http://liw.fi/coverage-test-runner/>
* <http://liw.fi/extrautils/>
+* <http://liw.fi/tracing/>
The unit test modules are paired with their corresponding code modules:
for code module `foo.py` there exists a unit test module `foo_tests.py`.
diff --git a/btree/__init__.py b/btree/__init__.py
index f6341c9..c55cedf 100644
--- a/btree/__init__.py
+++ b/btree/__init__.py
@@ -14,7 +14,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
-version = '0.16.2'
+version = '0.17'
from nodes import FrozenNode, LeafNode, IndexNode
diff --git a/debian/changelog b/debian/changelog
index 632fce3..9afe42e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+python-btree (0.17) squeeze; urgency=low
+
+ * New upstream version.
+
+ -- Lars Wirzenius <liw@liw.fi> Sun, 13 Feb 2011 16:39:38 +0000
+
python-btree (0.16.2) squeeze; urgency=low
* New upstream release.