Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAleksey Lim <alsroot@member.fsf.org>2010-08-24 17:04:29 (GMT)
committer Aleksey Lim <alsroot@member.fsf.org>2010-08-24 17:04:29 (GMT)
commitaa3abc1eca119fa8e2a92ceb001d73c826031c12 (patch)
treee9fdba0bfca926761555f8807131499be1c47a16
parentefa47c462ccae70e6f54ad5f5308b533aabd2476 (diff)
Bump v0.89.3
-rw-r--r--AUTHORS12
-rw-r--r--NEWS5
-rw-r--r--README16
-rw-r--r--configure.ac2
-rw-r--r--src/carquinyol/layoutmanager.py2
5 files changed, 22 insertions, 15 deletions
diff --git a/AUTHORS b/AUTHORS
index a2c2720..815ace9 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -1,7 +1,7 @@
Contributors
-============
-
+~~~~~~~~~~~~
Aleksey Lim <alsroot@member.fsf.org>
+Andrés Ambrois <andresambrois@gmail.com>
Benjamin Saller <bcsaller@objectrealms.net>
Bernie Innocenti <bernie@codewiz.org>
Bert Freudenberg <bert@freudenbergs.de>
@@ -13,12 +13,12 @@ Simon Schampijer <simon@schampijer.de>
Tomeu Vizoso <tomeu@sugarlabs.org>
Wade Brainerd <wadetb@gmail.com>
-Past maintainers
-================
+Past maintainers
+~~~~~~~~~~~~~~~~
Tomeu Vizoso <tomeu@sugarlabs.org>
-Current maintainers
-===================
+Current maintainers
+~~~~~~~~~~~~~~~~~~~
Aleksey Lim <alsroot@member.fsf.org>
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