diff --git a/CHANGELOG.md b/CHANGELOG.md index cfc0e080..d9825cd2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -67,7 +67,7 @@ In this release, we are no longer relying on traits from the __alga__ crate for Instead, we use traits from the new [simba](https://crates.io/crates/simba) crate which are both simpler, and allow for significant optimizations like AoSoA SIMD. -Refer to the [monthly Rustsim blogpost](https://www.rustsim.org/blog/2020/04/01/this-month-in-rustsim/) +Refer to the [monthly dimforge blogpost](https://www.dimforge.org/blog/2020/04/01/this-month-in-dimforge/) for details about this switch and its benefits. ### Added diff --git a/Cargo.toml b/Cargo.toml index 615942a8..c3ecd3e3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,18 +3,20 @@ name = "nalgebra" version = "0.24.0" authors = [ "Sébastien Crozet " ] -description = "Linear algebra library with transformations and statically-sized or dynamically-sized matrices." -documentation = "https://nalgebra.org/rustdoc/nalgebra/index.html" +description = "General-purpose linear algebra library with transformations and statically-sized or dynamically-sized matrices." +documentation = "https://www.nalgebra.org/docs" homepage = "https://nalgebra.org" -repository = "https://github.com/rustsim/nalgebra" +repository = "https://github.com/dimforge/nalgebra" readme = "README.md" -categories = [ "science" ] +categories = [ "science", "mathematics", "wasm", "no standard library" ] keywords = [ "linear", "algebra", "matrix", "vector", "math" ] -license = "Apache-2.0" +license = "BSD-3-Clause" edition = "2018" - exclude = ["/ci/*", "/.travis.yml", "/Makefile"] +[badges] +maintenance = { status = "actively-developed" } + [lib] name = "nalgebra" path = "src/lib.rs" diff --git a/nalgebra-glm/Cargo.toml b/nalgebra-glm/Cargo.toml index 6cbf7ab7..97e7f8b3 100644 --- a/nalgebra-glm/Cargo.toml +++ b/nalgebra-glm/Cargo.toml @@ -4,15 +4,18 @@ version = "0.10.0" authors = ["sebcrozet "] description = "A computer-graphics oriented API for nalgebra, inspired by the C++ GLM library." -documentation = "https://www.nalgebra.org/rustdoc_glm/nalgebra_glm/index.html" +documentation = "https://www.nalgebra.org/docs" homepage = "https://nalgebra.org" -repository = "https://github.com/rustsim/nalgebra" +repository = "https://github.com/dimforge/nalgebra" readme = "../README.md" -categories = [ "science" ] +categories = [ "science", "mathematics", "wasm", "no standard library" ] keywords = [ "linear", "algebra", "matrix", "vector", "math" ] license = "BSD-3-Clause" edition = "2018" +[badges] +maintenance = { status = "actively-developed" } + [features] default = [ "std" ] std = [ "nalgebra/std", "simba/std" ] diff --git a/nalgebra-lapack/Cargo.toml b/nalgebra-lapack/Cargo.toml index 1ea68287..58c92dd0 100644 --- a/nalgebra-lapack/Cargo.toml +++ b/nalgebra-lapack/Cargo.toml @@ -3,14 +3,18 @@ name = "nalgebra-lapack" version = "0.15.0" authors = [ "Sébastien Crozet ", "Andrew Straw " ] -description = "Linear algebra library with transformations and satically-sized or dynamically-sized matrices." -documentation = "https://nalgebra.org/doc/nalgebra/index.html" -homepage = "https://nalgebra.org" -repository = "https://github.com/rustsim/nalgebra" -readme = "README.md" -keywords = [ "linear", "algebra", "matrix", "vector" ] -license = "BSD-3-Clause" -edition = "2018" +description = "Matrix decompositions using nalgebra matrices and Lapack bindings." +documentation = "https://www.nalgebra.org/docs" +homepage = "https://nalgebra.org" +repository = "https://github.com/dimforge/nalgebra" +readme = "../README.md" +categories = [ "science", "mathematics" ] +keywords = [ "linear", "algebra", "matrix", "vector", "math", "lapack" ] +license = "BSD-3-Clause" +edition = "2018" + +[badges] +maintenance = { status = "actively-developed" } [features] serde-serialize = [ "serde", "serde_derive" ] diff --git a/tests/geometry/projection.rs b/tests/geometry/projection.rs index 626c4ffb..e4081996 100644 --- a/tests/geometry/projection.rs +++ b/tests/geometry/projection.rs @@ -22,7 +22,7 @@ fn orthographic_inverse() { #[test] fn perspective_matrix_point_transformation() { - // https://github.com/rustsim/nalgebra/issues/640 + // https://github.com/dimforge/nalgebra/issues/640 let proj = Perspective3::new(4.0 / 3.0, 90.0, 0.1, 100.0); let perspective_inv = proj.as_matrix().try_inverse().unwrap(); let some_point = Point3::new(1.0, 2.0, 0.0);