Skip to content

Commit

Permalink
updated dependencies and bumped version to 0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
stefan-k committed May 15, 2019
1 parent 4b319d7 commit cb8eeb3
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "argmin"
version = "0.2.1"
version = "0.2.2"
authors = ["Stefan Kroboth <stefan.kroboth@gmail.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand All @@ -20,11 +20,11 @@ exclude = [
[dependencies]
# argmin_core = { path = "../argmin-core"}
# argmin_testfunctions = { path = "../argmin-testfunctions" }
argmin_core = { git = "https://github.com/argmin-rs/argmin-core.git", branch = "master"}
argmin_testfunctions = { git = "https://github.com/argmin-rs/argmin-testfunctions.git", branch = "master"}
# argmin_core = "0.2.1"
# argmin_testfunctions = "0.1.1"
rand = { version = "0.6.1", features = ["serde1"] }
# argmin_core = { git = "https://github.com/argmin-rs/argmin-core.git", branch = "master"}
# argmin_testfunctions = { git = "https://github.com/argmin-rs/argmin-testfunctions.git", branch = "master"}
argmin_core = "0.2.2"
argmin_testfunctions = "0.1.1"
rand = { version = "0.6.5", features = ["serde1"] }
rand_xorshift = { version = "0.1.1", features = ["serde1"] }
serde = { version = "1.0", features = ["derive", "rc"] }
# argmin_codegen = "0.1.8"
Expand All @@ -35,7 +35,7 @@ serde = { version = "1.0", features = ["derive", "rc"] }
ndarray = { version = "0.12.1", features = ["serde-1"] }
ndarray-linalg = { version = "0.10.0", features = ["openblas"] }
gnuplot = "0.0.27"
paste = "0.1.4"
paste = "0.1.5"


[features]
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ Add this to your `Cargo.toml`:

```toml
[dependencies]
argmin = "0.2.1"
argmin = "0.2.2"
```

### Optional features (recommended)
Expand All @@ -83,7 +83,7 @@ There are additional features which can be activated in `Cargo.toml`:

```toml
[dependencies]
argmin = { version = "0.2.1", features = ["ctrlc", "ndarrayl"] }
argmin = { version = "0.2.2", features = ["ctrlc", "ndarrayl"] }
```

These may become default features in the future. Without these features compilation to
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
//!
//! ```toml
//! [dependencies]
//! argmin = "0.2.1"
//! argmin = "0.2.2"
//! ```
//!
//! ## Optional features (recommended)
Expand All @@ -86,7 +86,7 @@
//!
//! ```toml
//! [dependencies]
//! argmin = { version = "0.2.1", features = ["ctrlc", "ndarrayl"] }
//! argmin = { version = "0.2.2", features = ["ctrlc", "ndarrayl"] }
//! ```
//!
//! These may become default features in the future. Without these features compilation to
Expand Down

0 comments on commit cb8eeb3

Please sign in to comment.