Skip to content

Commit 3230d98

Browse files
committed
ndarray-parallel 0.9.1
1 parent 8b5af54 commit 3230d98

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

parallel/Cargo.toml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
[package]
22
name = "ndarray-parallel"
3-
version = "0.9.0"
3+
version = "0.9.1"
44
authors = ["bluss"]
55
license = "MIT/Apache-2.0"
66

77
repository = "https://github.com/bluss/rust-ndarray"
88
documentation = "https://docs.rs/ndarray-parallel/"
99

10-
description = "Parallelization for ndarray (using rayon)."
10+
description = """Parallelization for ndarray using rayon.
11+
(Deprecated - use ndarray with rayon directly.)
12+
"""
1113

1214
keywords = ["data-structure", "multidimensional", "parallel", "concurrent"]
1315
categories = ["data-structures", "science", "concurrency"]
@@ -22,3 +24,8 @@ itertools = { version = "0.7.0", default-features = false }
2224

2325
[package.metadata.release]
2426
no-dev-version = true
27+
tag-name = "parallel-{{version}}"
28+
29+
[badges]
30+
# Replaced by rayon support directly in ndarray
31+
maintenance = { status = "deprecated" }

parallel/README.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,10 @@ How to use with cargo::
4949
Recent Changes (ndarray-parallel)
5050
---------------------------------
5151

52+
- 0.9.1
53+
54+
- Mark crate as deprecated, replaced by direct support in ndarray.
55+
5256
- 0.9.0
5357

5458
- Upgrade for ndarray 0.12.0

parallel/src/lib.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
//! Parallelization features for ndarray.
22
//!
3+
//! ***This crate is deprecated and was replaced by equivalent `rayon` support
4+
//! directly integrated to `ndarray`.***
5+
//!
36
//! The array views and references to owned arrays all implement
47
//! `NdarrayIntoParallelIterator` (*); the default parallel iterators (each element
58
//! by reference or mutable reference) have no ordering guarantee in their

0 commit comments

Comments
 (0)