From aa3abc1eca119fa8e2a92ceb001d73c826031c12 Mon Sep 17 00:00:00 2001 From: Aleksey Lim Date: Tue, 24 Aug 2010 17:04:29 +0000 Subject: Bump v0.89.3 --- diff --git a/AUTHORS b/AUTHORS index a2c2720..815ace9 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,7 +1,7 @@ Contributors -============ - +~~~~~~~~~~~~ Aleksey Lim +Andrés Ambrois Benjamin Saller Bernie Innocenti Bert Freudenberg @@ -13,12 +13,12 @@ Simon Schampijer Tomeu Vizoso Wade Brainerd -Past maintainers -================ +Past maintainers +~~~~~~~~~~~~~~~~ Tomeu Vizoso -Current maintainers -=================== +Current maintainers +~~~~~~~~~~~~~~~~~~~ Aleksey Lim diff --git a/NEWS b/NEWS index 0a765be..f5a9eb6 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,8 @@ +v0.89.3 2010-08-24 +* New metadata fields, creation_time and filesize to support sorting + in the Journal #1915 +* Create target directory before importing previews (carrott) #2149 + v0.89.2 2010-08-04 * sl#2132: reduce _FLUSH_TIMEOUT to 5 seconds * Set index_updated flag on ds shutting down #2095 diff --git a/README b/README index b29cebb..b6b4ed4 100644 --- a/README +++ b/README @@ -1,13 +1,11 @@ About -===== - +~~~~~ Provides activities with a way to store data and metadata and the journal with means for querying, including full text search. Resources -========= - +~~~~~~~~~ Code Repository http://git.sugarlabs.org/projects/sugar-datastore/ @@ -19,8 +17,7 @@ Home Page Storage format history -====================== - +~~~~~~~~~~~~~~~~~~~~~~ 0 0.82.x Initial format @@ -38,4 +35,9 @@ Storage format history migration to version 2 (SL#1787) 5 not-mainstream - test versioning support (version bump for SL#1787) + pre v6 testing + +6 0.90 + new metadata fields: + - creation_time, time of ds entry creation in seconds since the epoch + - filesize, size of ds entry data file in bytes diff --git a/configure.ac b/configure.ac index 6ccea2e..5eb3d9a 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([sugar-datastore],[0.89.2],[],[sugar-datastore]) +AC_INIT([sugar-datastore],[0.89.3],[],[sugar-datastore]) AC_PREREQ([2.59]) diff --git a/src/carquinyol/layoutmanager.py b/src/carquinyol/layoutmanager.py index 0b13c69..983f64c 100644 --- a/src/carquinyol/layoutmanager.py +++ b/src/carquinyol/layoutmanager.py @@ -18,7 +18,7 @@ import os import logging MAX_QUERY_LIMIT = 40960 -CURRENT_LAYOUT_VERSION = 5 +CURRENT_LAYOUT_VERSION = 6 class LayoutManager(object): """Provide the logic about how entries are stored inside the datastore -- cgit v0.9.1