From 96f199a3273f41f7e95eff3ddceb47b5ed3aa56a Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Tue, 27 Jun 2017 14:26:13 +0200 Subject: [PATCH] Dump the version to 0.2.0 Time to make a release. --- ChangeLog | 16 ++++++++++++++++ meson.build | 2 +- src/meson.build | 2 +- 3 files changed, 18 insertions(+), 2 deletions(-) create mode 100644 ChangeLog diff --git a/ChangeLog b/ChangeLog new file mode 100644 index 000000000..390eb1f51 --- /dev/null +++ b/ChangeLog @@ -0,0 +1,16 @@ +kiwix-lib 0.2.0 +=============== + + * Generate the snippet from the article content if the snippet is not + directly in the database. + This provide better snippets as they now depending of the query. + * Use the stopwords and the language stored in the fulltext index database to + parse the user query. + * Remove the indexer functionnality. + * Move to C++11 standard. + * Use the fulltext search of the zimlib. + We still have the fulltext search code in kiwix-lib to be able to search in + fulltext index by side of a zim file. (To be remove in the future) + * Few API hanges + * Change a lot of `Reader` methods to const methods. + * Fix some crashes. diff --git a/meson.build b/meson.build index 23dd1c23e..b62c12ba3 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('kiwixlib', 'cpp', - version : '0.1.0', + version : '0.2.0', license : 'GPL', default_options : ['c_std=c11', 'cpp_std=c++11']) diff --git a/src/meson.build b/src/meson.build index 97e375eea..02e3e2d4b 100644 --- a/src/meson.build +++ b/src/meson.build @@ -39,6 +39,6 @@ kiwixlib = library('kiwix', kiwix_sources, include_directories : inc, dependencies : all_deps, - version: '1.0.0', + version: meson.project_version(), install: true, install_dir: install_dir)