summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS22
-rw-r--r--configure.ac2
2 files changed, 23 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 5bf179dbe..77271bf9b 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,25 @@
+NEW in 1.3.2 - 2014-12-11
+=========================
+
+ * New Feature: 'tracker' binary: All pre-existing tracker-* command line tools have been merged into this new binary. Man pages are shown for 'help' sub-commands. This brings more of a "git" feel to the tracker's command line tools. There is a backwards compatible 'tracker-command' script and compatibility layer provided to ensure existing commands still work for a limited time. The old 'tracker-control' actions are now part of 'tracker daemon', 'tracker reset' and 'tracker index'. Additionally, the 'tracker-sql' utility has been integrated to allow SQL operations directly on the DB.
+ * Fixes: GB#741317, miner-fs: use GFile to check for homedir
+ * Fixes: GB#741141, Tracker crashes every 5-10 minutes
+ * Fixes: RH#1133042, [abrt] tracker: persistence_store_file(): tracker-extract killed by SIGSEGV
+ * all: Move all code from tracker_info() to g_info() new in GLib 2.40.
+ * gvdb: Fixed LDFLAGS and CFLAGS, was using unused variables
+ * gvdb: Move away from g_file_delete() to unlink() to avoid GIO dep for one line in unit tests
+ * libtracker-fts: Make property list per-thread data to fix uninitialisation issues
+ * libtracker-fts: Fixed compilation errors when --disable-tracker-fts is used
+ * tracker-extract: Fixed potential use of uninitialised hash table in persistence_invalidate()
+ * tracker-extract: Fixed possible invalid memory read/write in tracker_keywords_parse()
+ * tracker-extract: Fixed memory leak of MediaArt object for TrackerExtractInfo
+ * clean-tracker-prefix: Should consider lib64 as well as lib directories
+
+Translations:
+
+ * Updated pl: Piotr Drąg
+
+
NEW in 1.3.1 - 2014-12-03
=========================
diff --git a/configure.ac b/configure.ac
index 6ae79fa73..ec8b150ad 100644
--- a/configure.ac
+++ b/configure.ac
@@ -13,7 +13,7 @@ AC_PREREQ([2.64])
# set TRACKER_BINARY_AGE and TRACKER_INTERFACE_AGE to 0.
m4_define([tracker_major_version], [1])
m4_define([tracker_minor_version], [3])
-m4_define([tracker_micro_version], [1])
+m4_define([tracker_micro_version], [2])
m4_define([tracker_interface_age], [0])
m4_define([tracker_binary_age],
[m4_eval(100 * tracker_minor_version + tracker_micro_version)])