From 24a06fb7cb9e119f63a905ca89e12d6ebed1bebc Mon Sep 17 00:00:00 2001 From: Ben Fulton Date: Tue, 9 May 2017 09:09:30 -0400 Subject: [PATCH] Documentation notes and update version string --- CHANGELOG.md | 11 +++++++++++ INSTALL | 1 + README.md | 4 ++-- cafe/cafe.h | 2 +- 4 files changed, 15 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d98e7ac..6428c98 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [4.0.1] - 2017-05-09 +### Added +- Configure command to allow more precise tuning for a user's system +- report: "json" flag added to output data in that format +- load: Files with "CSV" extension will now be interpreted as comma-separated values +- C++11 support is now required for compilation + +### Changed +- Buffer overflow error when setting random family sizes fixed + + ## [4.0.0] - 2017-03-15 ### Added - License file and this changelog. With this release a new website and Google group for questions are available. diff --git a/INSTALL b/INSTALL index 2734180..939b9f6 100644 --- a/INSTALL +++ b/INSTALL @@ -6,6 +6,7 @@ This release provides a precompiled binary file suitable for execution on a Linu Installation from Source ======================== * cd to the root directory of the CAFE source +* Type "./configure" * Type "make" * The cafe executable will be built in the "release" directory. diff --git a/README.md b/README.md index 016eb7c..1996a3b 100644 --- a/README.md +++ b/README.md @@ -33,8 +33,8 @@ along each branch in the tree # Install -Run "make" from the home directory. If the readline library is available on the system, running -"make USE_READLINE=1" will allow CAFE to support a command line history. +Run "./configure" and "make" from the home directory. If the readline library is available +on the system, running "make USE_READLINE=1" will allow CAFE to support a command line history. # History diff --git a/cafe/cafe.h b/cafe/cafe.h index 514cc48..379bff8 100644 --- a/cafe/cafe.h +++ b/cafe/cafe.h @@ -117,6 +117,6 @@ void reset_k_likelihoods(pCafeNode pcnode, int k, int num_factors); double cafe_get_clustered_posterior(pCafeParam param); -#define CAFE_VERSION "3.2" +#define CAFE_VERSION "4.0.1" #endif