Skip to content

Commit

Permalink
bump jline version to 2.11 & first version of changelog for 1.5.0 rel…
Browse files Browse the repository at this point in the history
…ease
  • Loading branch information
alexott committed Jun 1, 2013
1 parent cf0704b commit 2e6e816
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 6 deletions.
32 changes: 27 additions & 5 deletions Changes.md
Original file line number Diff line number Diff line change
@@ -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 ##

Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -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"]}
Expand Down

0 comments on commit 2e6e816

Please sign in to comment.