From 048bd382a794249df7f0aea6cf55cc8d7f1bb5f8 Mon Sep 17 00:00:00 2001 From: Gertjan van den Burg Date: Tue, 27 Mar 2018 19:36:54 +0100 Subject: bump version --- CHANGELOG.md | 7 +++++++ Makefile | 2 +- tests/src/test_gensvm_io.c | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f3bcc4..77c2355 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## Version 0.2.1 + +- Add support for prediction after grid search +- Bugfix for reading nonlinear training files +- Command line flag for maximum number of iterations in GenSVM +- Add support for seeding with nonlinear GenSVM + ## Version 0.2.0 - Fix bug in nonlinear GenSVM, it should perform better now. diff --git a/Makefile b/Makefile index 15ff02a..30a8ee3 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION=0.2.0 +VERSION=0.2.1 CC=gcc CFLAGS=-Wall -Wno-unused-result -Wsign-compare -Wstrict-prototypes \ -DVERSION=$(VERSION) -g -O3 diff --git a/tests/src/test_gensvm_io.c b/tests/src/test_gensvm_io.c index b4210bb..fb5916d 100644 --- a/tests/src/test_gensvm_io.c +++ b/tests/src/test_gensvm_io.c @@ -654,7 +654,7 @@ char *test_gensvm_write_model() char buffer[GENSVM_MAX_LINE_LENGTH]; fgets(buffer, GENSVM_MAX_LINE_LENGTH, fid); - mu_assert(strcmp(buffer, "Output file for GenSVM (version 0.2.0)\n") + mu_assert(strcmp(buffer, "Output file for GenSVM (version 0.2.1)\n") == 0, "Line doesn't contain expected content (0).\n"); // skip the time line -- cgit v1.2.3