Skip to content

Commit

Permalink
version 0.4.5 (#119)
Browse files Browse the repository at this point in the history
  • Loading branch information
stefan-k authored Jun 1, 2021
1 parent efa681f commit 91c896e
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## argmin v0.4.5

- Squash warnings for Nalgebra 0.26.x (#118, #117, @CattleProdigy)

## argmin v0.4.4

- Finally started writing a changelog.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "argmin"
version = "0.4.4"
version = "0.4.5"
authors = ["Stefan Kroboth <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ Add this to your `Cargo.toml`:

```toml
[dependencies]
argmin = "0.4.4"
argmin = "0.4.5"
```

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

```toml
[dependencies]
argmin = { version = "0.4.4", features = ["ctrlc", "ndarrayl", "nalgebral"] }
argmin = { version = "0.4.5", features = ["ctrlc", "ndarrayl", "nalgebral"] }
```

These may become default features in the future. Without these features compilation to
Expand All @@ -98,6 +98,12 @@ These may become default features in the future. Without these features compilat
- `ndarrayl`: Support for `ndarray`, `ndarray-linalg` and `ndarray-rand`.
- `nalgebral`: Support for [`nalgebra`](https://nalgebra.org).

Using the `ndarrayl` feature on Windows might require to explicitly choose the `ndarray-linalg` BLAS backend in the `Cargo.toml`:

```toml
ndarray-linalg = { version = "*", features = ["intel-mkl-static"] }
```

### Running the tests

Running the tests requires the `ndarrayl` and `nalgebral` features to be enabled
Expand Down
11 changes: 9 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
//!
//! ```toml
//! [dependencies]
//! argmin = "0.4.4"
//! argmin = "0.4.5"
//! ```
//!
//! ## Optional features (recommended)
Expand All @@ -88,7 +88,7 @@
//!
//! ```toml
//! [dependencies]
//! argmin = { version = "0.4.4", features = ["ctrlc", "ndarrayl", "nalgebral"] }
//! argmin = { version = "0.4.5", features = ["ctrlc", "ndarrayl", "nalgebral"] }
//! ```
//!
//! These may become default features in the future. Without these features compilation to
Expand All @@ -99,6 +99,13 @@
//! - `ndarrayl`: Support for `ndarray`, `ndarray-linalg` and `ndarray-rand`.
//! - `nalgebral`: Support for `nalgebra`.
//!
//! Using the `ndarrayl` feature on Windows might require to explicitly choose the `ndarray-linalg`
//! BLAS backend in the `Cargo.toml`:
//!
//! ```toml
//! ndarray-linalg = { version = "*", features = ["intel-mkl-static"] }
//! ```
//!
//! ## Running the tests
//!
//! Running the tests requires the `ndarrayl` and feature to be enabled:
Expand Down

0 comments on commit 91c896e

Please sign in to comment.