From 862a03713b858830dac60c404711030903768891 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrien=20B=C3=A9raud?= <adrien.beraud@savoirfairelinux.com> Date: Thu, 1 Sep 2016 17:25:59 -0400 Subject: [PATCH] opendht: version 1.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * add Prefix Hash Tree (PHT) for data indexation (Nicolas Reynaud, Simon Désaulniers) * add Queries (Simon Désaulniers) * add long-term data persistance (Simon Désaulniers) * add data pagination (Simon Désaulniers) * reduced bandwith usage --- CMakeLists.txt | 4 ++-- configure.ac | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 545b449b..f3b96812 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required (VERSION 2.8.6) project (opendht) -set (opendht_VERSION_MAJOR 0) -set (opendht_VERSION_MINOR 6.1) +set (opendht_VERSION_MAJOR 1) +set (opendht_VERSION_MINOR 0.0) set (opendht_VERSION ${opendht_VERSION_MAJOR}.${opendht_VERSION_MINOR}) set (PACKAGE_VERSION ${opendht_VERSION}) set (VERSION "${opendht_VERSION}") diff --git a/configure.ac b/configure.ac index ffa686a3..9850d9a2 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ dnl define macros -m4_define([opendht_major_version], 0) -m4_define([opendht_minor_version], 6) -m4_define([opendht_patch_version], 1) +m4_define([opendht_major_version], 1) +m4_define([opendht_minor_version], 0) +m4_define([opendht_patch_version], 0) m4_define([opendht_version], [opendht_major_version.opendht_minor_version.opendht_patch_version]) -- GitLab