From 5028dc737604d78d63149a080eb13db445ffcfd4 Mon Sep 17 00:00:00 2001 From: Markus Klein Date: Wed, 16 Nov 2016 02:02:47 +0100 Subject: [PATCH] bumped version to 0.1.8 --- Cargo.toml | 8 ++++---- README.md | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 39aafa1..181f2db 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vikos" -version = "0.1.7" +version = "0.1.8" authors = ["Holger Peters ", "Markus Klein "] description = "A machine learning library for supervised training of parametrized models" license = "MIT" @@ -10,9 +10,9 @@ readme = "README.md" keywords = ["machine","learning","machine-learning"] [dependencies] -num = "0.1.35" -rustc-serialize = "0.3.19" -clippy = {version= "0.0.90", optional = true } +num = "0.1.36" +rustc-serialize = "0.3.21" +clippy = {version= "0.0.98", optional = true } [dev-dependencies] csv = "0.14.7" diff --git a/README.md b/README.md index 535fda4..e63aeb1 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ Getting Started authors = ["..."] [dependencies] - vikos = "0.1.6" + vikos = "0.1.8" ``` 6. Insert `extern crate vikos;` at the first line in `src/main.rs` 7. You can now start replacing code in `main` with code from the [tutorial].