diff --git a/Cargo.toml b/Cargo.toml index 7bc539f..b3f6dcc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "smawk" -version = "0.3.0" +version = "0.3.1" authors = ["Martin Geisler "] description = "Functions for finding row-minima in a totally monotone matrix." repository = "https://github.com/mgeisler/smawk" diff --git a/src/lib.rs b/src/lib.rs index c99c762..3d24d3e 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -86,7 +86,7 @@ //! unknown inputs, it can use [`monge::is_monge`] to verify that a //! matrix is a Monge matrix. -#![doc(html_root_url = "https://docs.rs/smawk/0.3.0")] +#![doc(html_root_url = "https://docs.rs/smawk/0.3.1")] #[cfg(feature = "ndarray")] pub mod brute_force;