From 2e6e8161e6ad0a4f0a00cbdef4648a6c6a751f67 Mon Sep 17 00:00:00 2001 From: Alex Ott Date: Sat, 1 Jun 2013 19:04:20 +0200 Subject: [PATCH] bump jline version to 2.11 & first version of changelog for 1.5.0 release --- Changes.md | 32 +++++++++++++++++++++++++++----- project.clj | 2 +- 2 files changed, 28 insertions(+), 6 deletions(-) diff --git a/Changes.md b/Changes.md index a424b89a..52ecc05f 100644 --- a/Changes.md +++ b/Changes.md @@ -1,10 +1,32 @@ # What's new in Incanter # -## Changes for 1.5.x - -- Incanter-core matrix using native BLAS through jBLAS/Clatrix -- Updated dependencies: - - [Clatrix](https://github.com/Quantisan/clatrix): 0.2.1 +## Changes for 1.5.0 ## + +### Enhancements ### + + - incanter-core's matrix uses native BLAS through jBLAS/Clatrix - this greatly improves performance. + - several interpolation functions were added to incanter-core module (as `incanter.interpolation` namespace). + - a new option is added to `heat-map` - `:include-zero?`. + - the `tail` function was added. + - new function `reorder-columns` for a dataset that changes the order of appearance of the datset columns. It does not alter the row order. + - `save` will print data to standard output if `"-"` is specified as file name. + - `sel` and other functions (`$`, `head`, `tail`, etc.) can be used with lists (`java.util.List`). + - the `toeplitz` function was added to generate Toeplitz matrix for given vector. + - the `scatter-plot-matrix` function was added to `incanter.chart` module + - `incanter.optimize` was extended with `minimize` and `maximise` functions for performing unconstrained nonlinear optimization using the BFGS algorithm. + +### Many bugfixes ### + - for function & parametric plots, line is finished in max-range point. + - permutation matrix is returned in LU decomposition. + - `sel` will return dataset when `:rows` or `:cols` are non-numbers - this changes + previous behaviour when list was returned if only one row or col was specified + - `linear-model` now correctly calculates t-probs + +### Updated dependencies ### + + - [Clatrix](https://github.com/Quantisan/clatrix): 0.3.0 + - Clojure: 1.5.1 + - JLine: 2.11 ## Changes for 1.4.x ## diff --git a/project.clj b/project.clj index a7a3680f..ad13281b 100644 --- a/project.clj +++ b/project.clj @@ -18,7 +18,7 @@ [swingrepl "1.3.0" :exclusions [org.clojure/clojure org.clojure/clojure-contrib]] - [jline "0.9.94"]] + [jline/jline "2.11"]] :main incanter.main :plugins [[lein-ritz "0.7.0" :exclusions [org.clojure/clojure]]] :profiles {:dev {:resource-paths ["data"]}