Skip to content

Commit d2c2bee

Browse files
committed
Merge pull request #157 from bluss/next-version
Bump to 0.4.3
2 parents 066c9f1 + 19b836a commit d2c2bee

File tree

3 files changed

+13
-6
lines changed

3 files changed

+13
-6
lines changed

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22

33
name = "ndarray"
4-
version = "0.4.2"
4+
version = "0.4.3"
55
authors = ["bluss"]
66
license = "MIT/Apache-2.0"
77

88
repository = "https://github.com/bluss/rust-ndarray"
99
documentation = "http://bluss.github.io/rust-ndarray/"
1010

11-
description = "An N-dimensional array for general elements and for numerics. Lightweight array views and slicing. Supports both uniquely owned and shared copy-on-write arrays similar to numpy’s ndarray."
11+
description = "An N-dimensional array for general elements and for numerics. Lightweight array views and slicing; views support chunking and splitting."
1212

1313
keywords = ["array", "data-structure", "multidimensional", "matrix", "blas"]
1414

README.rst

+9-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
ndarray
22
=========
33

4-
The ``ndarray`` crate provides an N-dimensional container similar to numpy’s
5-
ndarray. Requires Rust 1.7.
4+
The ``ndarray`` crate provides an N-dimensional container for general elements
5+
and for numerics. Requires Rust 1.7.
66

77
Please read the `API documentation here (master)`__, `(0.3)`__, `(0.2)`__
88

@@ -94,6 +94,13 @@ How to use with cargo::
9494
Recent Changes (ndarray)
9595
------------------------
9696

97+
- 0.4.3
98+
99+
- Add array method ``.t()`` as a shorthand to create a transposed view.
100+
- Fix ``mat_mul`` so that it accepts arguments of different array kind
101+
- Fix a bug in ``mat_mul`` when using BLAS and multiplying with a column
102+
matrix (#154)
103+
97104
- 0.4.2
98105

99106
- Add new BLAS integration used by matrix multiplication

src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
#![cfg_attr(has_deprecated, feature(deprecated))]
1010
#![doc(html_root_url = "http://bluss.github.io/rust-ndarray/master/")]
1111

12-
//! The `ndarray` crate provides an N-dimensional container similar to numpy’s
13-
//! ndarray.
12+
//! The `ndarray` crate provides an N-dimensional container for general elements
13+
//! and for numerics.
1414
//!
1515
//! - [`ArrayBase`](struct.ArrayBase.html):
1616
//! The N-dimensional array type itself.

0 commit comments

Comments
 (0)