From b4728aab19943174770160557e45846502e7daac Mon Sep 17 00:00:00 2001 From: Jayden626 Date: Fri, 2 Nov 2018 13:20:50 +1100 Subject: [PATCH] Updated version numbers and Readme for v 0.7.0 --- README.md | 23 +++++++++++++++++++++++ api/build.gradle | 2 +- cli/build.gradle | 2 +- client/build.gradle | 2 +- 4 files changed, 26 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6ceff03..4155fd0 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,29 @@ ## What's New +### Release Notes - 0.7.0 - November 2nd, 2018 + +#### CLI +* Graph output changed from PDF to PNG, bringing speed improvements +* Logarithmic scaling of axes in the solution fit plot has been disabled + +#### General +* Added link to repository to the “About Iconic Workbench” dialog in the Help section of the menu bar +* Updated range of constants in GEP search from 0 – 100 to -100 – 100. + +#### Input Data +* Bugs around copying from Iconic into Excel and vice versa have been fixed +* Deleting values from cells now working correctly +* Can copy, paste and delete using the Edit section of the menu bar + +#### Define Search +* Implemented Enable All / Disable All button for building blocks +* Added additional checks and a warning dialog to starting a search with no primitives +* Changed default complexities back to 1 + +#### Results +* Fixed a bug where results from a CGP search would not plot correctly + ### Release Notes - 0.6.0 - October 25th, 2018 #### General diff --git a/api/build.gradle b/api/build.gradle index f354bbe..119eaf5 100644 --- a/api/build.gradle +++ b/api/build.gradle @@ -19,7 +19,7 @@ dependencies { testRuntimeOnly group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.1.0' } -version = '0.6.0' +version = '0.7.0' jar { baseName = 'iconic-api' diff --git a/cli/build.gradle b/cli/build.gradle index 9a6c51e..6b64a72 100644 --- a/cli/build.gradle +++ b/cli/build.gradle @@ -18,7 +18,7 @@ dependencies { jar { baseName = 'iconic-cli' - version = '0.6.0' + version = '0.7.0' // The Java plugin doesn't specify any of the // manifest attributes, so we need at least diff --git a/client/build.gradle b/client/build.gradle index 5152304..634d74c 100644 --- a/client/build.gradle +++ b/client/build.gradle @@ -13,7 +13,7 @@ buildscript { } } -version = '0.6.0' +version = '0.7.0' dependencies { compile 'org.controlsfx:controlsfx:8.40.14'