From 51f7851024fd75cae7f414b6830deb4d0dc159e7 Mon Sep 17 00:00:00 2001 From: Ed Page <eopage@byu.net> Date: Sat, 23 Sep 2017 14:37:06 -0600 Subject: [PATCH] Release 0.5.0 This release includes - Changing output asserts - `.prints` -> `.stdout().contains` - `.prints_exactly` -> `.stdout().is` - `.prints_error` -> `.stderr().contains` - `.prints_error_exactly` -> `.stderr().is` - Add negative output assertions - `.stdout().isnt` - `.stdout().doesnt_contain` - Output assertions are now anded together rather than replacing each other. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 4444670..60977f2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "assert_cli" -version = "0.4.0" +version = "0.5.0" description = "Test CLI Applications." authors = ["Pascal Hertleif <killercup@gmail.com>"] license = "MIT OR Apache-2.0"