From 711b384a9c127a99eb98d07f574b570bb695a43a Mon Sep 17 00:00:00 2001 From: Alex Ott Date: Thu, 13 Jun 2013 20:44:44 +0200 Subject: [PATCH] 1.5.1 release --- Changes.md | 7 +++++++ modules/incanter-charts/project.clj | 4 ++-- modules/incanter-core/project.clj | 2 +- modules/incanter-excel/project.clj | 4 ++-- modules/incanter-io/project.clj | 4 ++-- modules/incanter-latex/project.clj | 4 ++-- modules/incanter-mongodb/project.clj | 4 ++-- modules/incanter-pdf/project.clj | 4 ++-- modules/incanter-sql/project.clj | 4 ++-- modules/incanter-svg/project.clj | 4 ++-- modules/incanter-zoo/project.clj | 4 ++-- project.clj | 22 +++++++++++----------- 12 files changed, 37 insertions(+), 30 deletions(-) diff --git a/Changes.md b/Changes.md index 25cb1062..e3143e82 100644 --- a/Changes.md +++ b/Changes.md @@ -2,6 +2,13 @@ ## Changes for 1.5.0 ## +### Bugfixes ### + + * Issue 157: when `transform-with` was used with Matrix, then source data was modified instead of working on copy of data + * Issue 160: when 2-arguments version of `solve` was used, the exception was thrown + +## Changes for 1.5.0 ## + ### Enhancements ### * incanter-core's matrix uses native BLAS through jBLAS/Clatrix - this greatly improves performance (on 64-bit Linux see "Known issues" section). diff --git a/modules/incanter-charts/project.clj b/modules/incanter-charts/project.clj index 5f0e4a20..fc06a27f 100644 --- a/modules/incanter-charts/project.clj +++ b/modules/incanter-charts/project.clj @@ -1,11 +1,11 @@ -(defproject incanter/incanter-charts "1.5.1-SNAPSHOT" +(defproject incanter/incanter-charts "1.5.1" :description "Incanter-charts is the JFreeChart module of the Incanter project." :url "http://incanter.org/" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :scm {:name "git" :url "https://github.com/liebke/incanter"} :min-lein-version "2.0.0" - :dependencies [[incanter/incanter-io "1.5.1-SNAPSHOT"] + :dependencies [[incanter/incanter-io "1.5.1"] [incanter/jfreechart "1.0.13-no-gnujaxp"] [clj-time "0.5.0" :exclusions [org.clojure/clojure]]] ) diff --git a/modules/incanter-core/project.clj b/modules/incanter-core/project.clj index 4f26f9dd..f640826b 100644 --- a/modules/incanter-core/project.clj +++ b/modules/incanter-core/project.clj @@ -1,4 +1,4 @@ -(defproject incanter/incanter-core "1.5.1-SNAPSHOT" +(defproject incanter/incanter-core "1.5.1" :description "Incanter-core is the core module of the Incanter project." :url "http://incanter.org/" :license {:name "Eclipse Public License" diff --git a/modules/incanter-excel/project.clj b/modules/incanter-excel/project.clj index 74f24ed0..867545ce 100644 --- a/modules/incanter-excel/project.clj +++ b/modules/incanter-excel/project.clj @@ -1,11 +1,11 @@ -(defproject incanter/incanter-excel "1.5.1-SNAPSHOT" +(defproject incanter/incanter-excel "1.5.1" :description "Incanter-excel provides access to reading and writing Excel files." :url "http://incanter.org/" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :scm {:name "git" :url "https://github.com/liebke/incanter"} :min-lein-version "2.0.0" - :dependencies [[incanter/incanter-core "1.5.1-SNAPSHOT"] + :dependencies [[incanter/incanter-core "1.5.1"] [org.clojure/clojure "1.5.1"] [org.apache.poi/poi-ooxml "3.9"]] ) diff --git a/modules/incanter-io/project.clj b/modules/incanter-io/project.clj index df552667..cf9df9a2 100644 --- a/modules/incanter-io/project.clj +++ b/modules/incanter-io/project.clj @@ -1,11 +1,11 @@ -(defproject incanter/incanter-io "1.5.1-SNAPSHOT" +(defproject incanter/incanter-io "1.5.1" :description "Incanter-io is the I/O module of the Incanter project." :url "http://incanter.org/" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :scm {:name "git" :url "https://github.com/liebke/incanter"} :min-lein-version "2.0.0" - :dependencies [[incanter/incanter-core "1.5.1-SNAPSHOT"] + :dependencies [[incanter/incanter-core "1.5.1"] [org.clojure/clojure "1.5.1"] ;; TODO: switch to data.csv? [net.sf.opencsv/opencsv "2.3"] diff --git a/modules/incanter-latex/project.clj b/modules/incanter-latex/project.clj index c7738d5f..9d94e580 100644 --- a/modules/incanter-latex/project.clj +++ b/modules/incanter-latex/project.clj @@ -1,11 +1,11 @@ -(defproject incanter/incanter-latex "1.5.1-SNAPSHOT" +(defproject incanter/incanter-latex "1.5.1" :description "Library for rendering LaTeX math equations using the jLateXMath library." :url "http://incanter.org/" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :scm {:name "git" :url "https://github.com/liebke/incanter"} :min-lein-version "2.0.0" - :dependencies [[incanter/incanter-charts "1.5.1-SNAPSHOT"] + :dependencies [[incanter/incanter-charts "1.5.1"] [org.clojure/clojure "1.5.1"] [org.scilab.forge/jlatexmath "0.9.6"]] ) diff --git a/modules/incanter-mongodb/project.clj b/modules/incanter-mongodb/project.clj index 97c28224..44a07cab 100644 --- a/modules/incanter-mongodb/project.clj +++ b/modules/incanter-mongodb/project.clj @@ -1,11 +1,11 @@ -(defproject incanter/incanter-mongodb "1.5.1-SNAPSHOT" +(defproject incanter/incanter-mongodb "1.5.1" :description "Incanter-mongodb is the MongoDB module of the Incanter project." :url "http://incanter.org/" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :scm {:name "git" :url "https://github.com/liebke/incanter"} :min-lein-version "2.0.0" - :dependencies [[incanter/incanter-core "1.5.1-SNAPSHOT"] + :dependencies [[incanter/incanter-core "1.5.1"] [org.clojure/clojure "1.5.1"] [congomongo "0.3.3" :exclusions [org.clojure/clojure diff --git a/modules/incanter-pdf/project.clj b/modules/incanter-pdf/project.clj index 0aca0f16..9ad361db 100644 --- a/modules/incanter-pdf/project.clj +++ b/modules/incanter-pdf/project.clj @@ -1,11 +1,11 @@ -(defproject incanter/incanter-pdf "1.5.1-SNAPSHOT" +(defproject incanter/incanter-pdf "1.5.1" :description "Incanter-pdf is the PDF module of the Incanter project." :url "http://incanter.org/" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :scm {:name "git" :url "https://github.com/liebke/incanter"} :min-lein-version "2.0.0" - :dependencies [[incanter/incanter-charts "1.5.1-SNAPSHOT"] + :dependencies [[incanter/incanter-charts "1.5.1"] [org.clojure/clojure "1.5.1"] [com.lowagie/itext "2.1.7"]] ) diff --git a/modules/incanter-sql/project.clj b/modules/incanter-sql/project.clj index a0399d33..b5e7d636 100644 --- a/modules/incanter-sql/project.clj +++ b/modules/incanter-sql/project.clj @@ -1,11 +1,11 @@ -(defproject incanter/incanter-sql "1.5.1-SNAPSHOT" +(defproject incanter/incanter-sql "1.5.1" :description "Database interaction via ClojureQL" :url "http://incanter.org/" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :scm {:name "git" :url "https://github.com/liebke/incanter"} :min-lein-version "2.0.0" - :dependencies [[incanter/incanter-core "1.5.1-SNAPSHOT"] + :dependencies [[incanter/incanter-core "1.5.1"] [org.clojure/clojure "1.5.1"] [clojureql "1.0.4" :exclusions [org.clojure/clojure]] ] diff --git a/modules/incanter-svg/project.clj b/modules/incanter-svg/project.clj index 1b5ad188..c95857cf 100644 --- a/modules/incanter-svg/project.clj +++ b/modules/incanter-svg/project.clj @@ -1,11 +1,11 @@ -(defproject incanter/incanter-svg "1.5.1-SNAPSHOT" +(defproject incanter/incanter-svg "1.5.1" :description "Incanter-svg is the SVG module of the Incanter project." :url "http://incanter.org/" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :scm {:name "git" :url "https://github.com/liebke/incanter"} :min-lein-version "2.0.0" - :dependencies [[incanter/incanter-charts "1.5.1-SNAPSHOT"] + :dependencies [[incanter/incanter-charts "1.5.1"] [org.clojure/clojure "1.5.1"] [org.apache.xmlgraphics/batik-dom "1.7"] [org.apache.xmlgraphics/batik-svggen "1.7"] diff --git a/modules/incanter-zoo/project.clj b/modules/incanter-zoo/project.clj index 0acfc21e..f2ce023b 100644 --- a/modules/incanter-zoo/project.clj +++ b/modules/incanter-zoo/project.clj @@ -1,11 +1,11 @@ -(defproject incanter/incanter-zoo "1.5.1-SNAPSHOT" +(defproject incanter/incanter-zoo "1.5.1" :description "Incanter Zoo is a port of Zoo from R." :url "http://incanter.org/" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :scm {:name "git" :url "https://github.com/liebke/incanter"} :min-lein-version "2.0.0" - :dependencies [[incanter/incanter-io "1.5.1-SNAPSHOT"] + :dependencies [[incanter/incanter-io "1.5.1"] [org.clojure/clojure "1.5.1"] [clj-time "0.5.0" :exclusions [org.clojure/clojure diff --git a/project.clj b/project.clj index df4327b9..7c9b7b36 100644 --- a/project.clj +++ b/project.clj @@ -1,20 +1,20 @@ -(defproject incanter "1.5.1-SNAPSHOT" +(defproject incanter "1.5.1" :description "Incanter is a Clojure-based, R-like statistical programming and data visualization environment." :url "http://incanter.org/" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :scm {:name "git" :url "https://github.com/liebke/incanter"} :min-lein-version "2.0.0" - :dependencies [[incanter/incanter-core "1.5.1-SNAPSHOT"] - [incanter/incanter-io "1.5.1-SNAPSHOT"] - [incanter/incanter-charts "1.5.1-SNAPSHOT"] - [incanter/incanter-mongodb "1.5.1-SNAPSHOT"] - [incanter/incanter-pdf "1.5.1-SNAPSHOT"] - [incanter/incanter-svg "1.5.1-SNAPSHOT"] - [incanter/incanter-latex "1.5.1-SNAPSHOT"] - [incanter/incanter-excel "1.5.1-SNAPSHOT"] - [incanter/incanter-sql "1.5.1-SNAPSHOT"] - [incanter/incanter-zoo "1.5.1-SNAPSHOT"] + :dependencies [[incanter/incanter-core "1.5.1"] + [incanter/incanter-io "1.5.1"] + [incanter/incanter-charts "1.5.1"] + [incanter/incanter-mongodb "1.5.1"] + [incanter/incanter-pdf "1.5.1"] + [incanter/incanter-svg "1.5.1"] + [incanter/incanter-latex "1.5.1"] + [incanter/incanter-excel "1.5.1"] + [incanter/incanter-sql "1.5.1"] + [incanter/incanter-zoo "1.5.1"] [org.clojure/clojure "1.5.1"] [swingrepl "1.3.0" :exclusions [org.clojure/clojure