From 0e8e4549253b44b786ef32210afa2d1fd1a85425 Mon Sep 17 00:00:00 2001 From: Andreas Longva Date: Wed, 13 Jan 2021 10:17:29 +0100 Subject: [PATCH] Version 0.1.4 --- CHANGELOG.md | 12 ++++++++++++ Cargo.toml | 4 ++-- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5447b23..886507e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,18 @@ Prominent changes for individual releases will be listed here. +## 0.1.4 - 2020-01-13 + +### Added + +- [proptest](https://crates.io/crates/proptest) support through new macros `prop_assert_matrix_eq!` + and `prop_assert_scalar_eq!`. The `proptest-support` feature must be enabled to use this new + functionality. + +### Changed + +- Very minor changes to formatting for output of some assertions. + ## 0.1.3 - Avoid pulling in default features for num-traits dependency (thanks to Sébastien Crozet!). diff --git a/Cargo.toml b/Cargo.toml index 71135f2..4f475d4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "matrixcompare" -version = "0.1.3" +version = "0.1.4" authors = ["Andreas Longva"] edition = "2018" license = "MIT" repository = "https://github.com/Andlon/matrixcompare" -keywords = [ "matrix", "comparison", "linear", "algebra", "linear-algebra" ] +keywords = [ "matrix", "comparison", "linear", "algebra", "assertions" ] description = "Tools for convenient comparison of matrices" readme = "README.md"