summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeif Lotfy <seif@lotfy.com>2011-01-18 11:49:04 +0100
committerSeif Lotfy <seif@lotfy.com>2011-01-18 11:49:04 +0100
commit15e233b14fa5fff45d9fa0d1f3bdaf1b697d6fe4 (patch)
treeb6ba1dd24a2bcc34830a2ef7590623655583ba77
parentbed77ed9b4454074715f5d0ff88fb476a9148313 (diff)
The 0.7.0 "All I have is this woodchuck" release of Zeitgeistv0.7.0
-rw-r--r--NEWS37
-rw-r--r--VERSION2
-rw-r--r--_zeitgeist/engine/remote.py2
-rw-r--r--configure.ac2
-rw-r--r--doc/zeitgeist/source/conf.py4
5 files changed, 42 insertions, 5 deletions
diff --git a/NEWS b/NEWS
index b33518a8..bfa6fff7 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,40 @@
+2011-01-18: Zeitgeist 0.7.0 "All I have is this woodchuck."
+-----------------------------------------
+
+Engine:
+
+ - Added some new mimetype mappings
+ - Speed up the GetEvents method by caching events (LP: #686732)
+ - Allow extension without public method (LP: #691660)
+ - Added a read-only DBus property "extensions" to org.gnome.zeitgeist.Log
+ (LP: #693861)
+ - Added helper function to get an extension's name
+ - Fixed bug in RemoteInterface.Quit(): make sure to close connection to the
+ used bus if this method gets called, this is needed if RemoteInterface
+ does not know anything about the loop it is running in.
+ - Fix sending payload from engine to client (LP: #692645)
+ - Improve performance of DataSourceRegistry (LP: #695311)
+ - Improve performance of find_event queries with timerange other than
+ TimeRange.always() (LP: #672965)
+ - Add an auto-filter for broken database entries (LP: #598666 workaround)
+ - Introduce new DB schema (version 3) that bundles a few performance related
+ fixes (LP: #673452, #673394)
+
+Python API:
+
+ - Fix find_event_for_template to stop ignoring the template (LP: #690377)
+ - Add get_extensions method to ZeitgeistClient
+
+Overall:
+
+ - Using logging output for debugging purposes (LP: #660440)
+ - Stop building man page for zeitgeist-datahub (LP: #680360)
+ - Allow easy building for KDE (LP: #683280)
+ - Logging output now displays how many events were actually inserted from
+ the batch of requested inserts (LP: #660440)
+ - Changed License to LGPL 2.1+
+
+
2010-11-01: Zeitgeist 0.6 "Buzzer Beater"
-----------------------------------------
diff --git a/VERSION b/VERSION
index 5a2a5806..eb49d7c7 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-0.6
+0.7
diff --git a/_zeitgeist/engine/remote.py b/_zeitgeist/engine/remote.py
index 15ade01e..72845cc3 100644
--- a/_zeitgeist/engine/remote.py
+++ b/_zeitgeist/engine/remote.py
@@ -42,7 +42,7 @@ class RemoteInterface(SingletonApplication):
:const:`org.gnome.zeitgeist.Engine`.
"""
_dbus_properties = {
- "version": property(lambda self: (0, 6, 0)),
+ "version": property(lambda self: (0, 7, 0)),
"extensions": property(lambda self: list(self._engine.extensions.iter_names())),
}
diff --git a/configure.ac b/configure.ac
index 9e46b5a3..0c3cbc67 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-AC_INIT([zeitgeist], [0.6])
+AC_INIT([zeitgeist], [0.7])
AC_CONFIG_SRCDIR(zeitgeist-daemon.py)
AM_INIT_AUTOMAKE([1.9 foreign])
GNOME_COMMON_INIT
diff --git a/doc/zeitgeist/source/conf.py b/doc/zeitgeist/source/conf.py
index 03dba8ca..86ebb0e5 100644
--- a/doc/zeitgeist/source/conf.py
+++ b/doc/zeitgeist/source/conf.py
@@ -49,9 +49,9 @@ copyright = u'2009, 2010 The Zeitgeist Team'
# built documents.
#
# The short X.Y version.
-version = '0.6'
+version = '0.7'
# The full version, including alpha/beta/rc tags.
-release = '0.6'
+release = '0.7'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.