Skip to content

Commit a7fb5f9

Browse files
authored
Merge pull request #521 from jturner314/update-urls
Update URLs
2 parents 68e0034 + f8a6270 commit a7fb5f9

File tree

8 files changed

+13
-13
lines changed

8 files changed

+13
-13
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = ["bluss"]
66
license = "MIT/Apache-2.0"
77
readme = "README-crates.io.md"
88

9-
repository = "https://github.com/bluss/ndarray"
9+
repository = "https://github.com/rust-ndarray/ndarray"
1010
documentation = "https://docs.rs/ndarray/"
1111

1212
description = "An n-dimensional array for general elements and for numerics. Lightweight array views and slicing; views support chunking and splitting."

README.rst

+5-5
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ __ https://docs.rs/ndarray/
1010

1111
|build_status|_ |crates|_
1212

13-
.. |build_status| image:: https://api.travis-ci.org/bluss/ndarray.svg?branch=master
14-
.. _build_status: https://travis-ci.org/bluss/ndarray
13+
.. |build_status| image:: https://api.travis-ci.org/rust-ndarray/ndarray.svg?branch=master
14+
.. _build_status: https://travis-ci.org/rust-ndarray/ndarray
1515

1616
.. |crates| image:: http://meritbadge.herokuapp.com/ndarray
1717
.. _crates: https://crates.io/crates/ndarray
@@ -164,7 +164,7 @@ __ https://docs.rs/ndarray/0.11/ndarray/doc/ndarray_for_numpy_users/
164164
- Minimum required Rust version is 1.22.
165165

166166
__ https://jim.turner.link/pages/ndarray-0.11/
167-
.. _`#380`: https://github.com/bluss/rust-ndarray/pull/380
167+
.. _`#380`: https://github.com/rust-ndarray/ndarray/pull/380
168168

169169
- 0.10.13
170170

@@ -310,7 +310,7 @@ __ https://bluss.github.io//rust/2017/04/09/ndarray-0.9/
310310
- ``AxisChunksIter`` creation sped up and it implements ``Clone``.
311311
- Dimension mismatch in ``Zip`` has a better panic message.
312312

313-
__ https://bluss.github.io/rust-ndarray/master/ndarray/type.IxDyn.html
313+
__ https://docs.rs/ndarray/0.8.2/ndarray/type.IxDyn.html
314314

315315
- 0.8.1
316316

@@ -634,7 +634,7 @@ __ http://bluss.github.io/rust/2016/03/06/ndarray-0.4/
634634
- Remove deprecated module ``linalg`` (it was already mostly empty)
635635
- Deprecate free function ``zeros`` in favour of static method ``zeros``.
636636

637-
__ https://bluss.github.io/rust-ndarray/master/ndarray/struct.ArrayBase.html#arithmetic-operations
637+
__ https://docs.rs/ndarray/0.4.0-alpha.5/ndarray/struct.ArrayBase.html#arithmetic-operations
638638

639639
- 0.4.0-alpha.4
640640

ndarray-rand/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.8.0"
44
authors = ["bluss"]
55
license = "MIT/Apache-2.0"
66

7-
repository = "https://github.com/bluss/rust-ndarray"
7+
repository = "https://github.com/rust-ndarray/ndarray"
88
documentation = "https://docs.rs/ndarray-rand/"
99

1010
description = "Constructors for randomized arrays. `rand` integration for `ndarray`."

parallel/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.9.0"
44
authors = ["bluss"]
55
license = "MIT/Apache-2.0"
66

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

1010
description = "Parallelization for ndarray (using rayon)."

parallel/README.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ __ http://docs.rs/ndarray-parallel/
1010

1111
|build_status|_ |crates|_
1212

13-
.. |build_status| image:: https://travis-ci.org/bluss/rust-ndarray.svg?branch=master
14-
.. _build_status: https://travis-ci.org/bluss/rust-ndarray
13+
.. |build_status| image:: https://travis-ci.org/rust-ndarray/ndarray.svg?branch=master
14+
.. _build_status: https://travis-ci.org/rust-ndarray/ndarray
1515

1616
.. |crates| image:: http://meritbadge.herokuapp.com/ndarray-parallel
1717
.. _crates: https://crates.io/crates/ndarray-parallel

src/impl_methods.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -829,7 +829,7 @@ impl<A, S, D> ArrayBase<S, D> where S: Data<Elem=A>, D: Dimension
829829
///
830830
/// **Panics** if `axis` is out of bounds.
831831
///
832-
/// <img src="https://bluss.github.io/ndarray/images/axis_iter_3_4_5.svg" height="250px">
832+
/// <img src="https://rust-ndarray.github.io/ndarray/images/axis_iter_3_4_5.svg" height="250px">
833833
pub fn axis_iter(&self, axis: Axis) -> AxisIter<A, D::Smaller>
834834
where D: RemoveAxis,
835835
{

src/impl_views.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ impl<'a, A, D> ArrayView<'a, A, D>
9999
/// Below, an illustration of `.split_at(Axis(2), 2)` on
100100
/// an array with shape 3 × 5 × 5.
101101
///
102-
/// <img src="https://bluss.github.io/ndarray/images/split_at.svg" width="300px" height="271px">
102+
/// <img src="https://rust-ndarray.github.io/ndarray/images/split_at.svg" width="300px" height="271px">
103103
pub fn split_at(self, axis: Axis, index: Ix)
104104
-> (Self, Self)
105105
{

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// option. This file may not be copied, modified, or distributed
77
// except according to those terms.
88
#![crate_name="ndarray"]
9-
#![doc(html_root_url = "https://docs.rs/ndarray/0.11/")]
9+
#![doc(html_root_url = "https://docs.rs/ndarray/0.12/")]
1010

1111
//! The `ndarray` crate provides an *n*-dimensional container for general elements
1212
//! and for numerics.

0 commit comments

Comments
 (0)