From 8bc6684940985c979eb22e304697f77128357a02 Mon Sep 17 00:00:00 2001 From: Cedric Nugteren Date: Sun, 22 Nov 2015 12:16:46 +0100 Subject: [PATCH] Updated to version 2.0.0 --- CHANGELOG | 2 +- CMakeLists.txt | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index f29c7b8..aaca86b 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,5 @@ -Development version (next release) +Version 2.0.0 - Added support for machine learning models. These models can be trained on a small fraction of the tuning configurations and can be used to predict the remainder. Two models are supported: * Linear regression diff --git a/CMakeLists.txt b/CMakeLists.txt index d8a7f06..67069a2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -26,9 +26,9 @@ # CMake project cmake_minimum_required(VERSION 2.8.10) project("cltune" CXX) -set(cltune_VERSION_MAJOR 1) -set(cltune_VERSION_MINOR 7) -set(cltune_VERSION_PATCH 1) +set(cltune_VERSION_MAJOR 2) +set(cltune_VERSION_MINOR 0) +set(cltune_VERSION_PATCH 0) # Options option(SAMPLES "Enable compilation of sample programs" ON)