Skip to content

Commit fdfbe66

Browse files
committedJun 28, 2018
chore: Release 0.4.0
1 parent d3cb76a commit fdfbe66

File tree

4 files changed

+23
-3
lines changed

4 files changed

+23
-3
lines changed
 

‎CHANGELOG.md

+20
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
<a name="0.4.0"></a>
2+
## 0.4.0 (2018-06-28)
3+
4+
5+
#### Features
6+
7+
* **assert:** Short-hand output predicates
8+
* `stdout()`/`stderr()` accept `str`([43eceba0](https://github.com/assert-rs/assert_cmd/commit/43eceba04ad0d612f417fc46d140795115895204), closes [#2](https://github.com/assert-rs/assert_cmd/issues/2))
9+
* `stdout()`/`stderr()` accept byte slices ([111abca9](https://github.com/assert-rs/assert_cmd/commit/111abca91db0e1d6ea6a6b94566f7b3425131a64))
10+
* `code()` accept a set. ([72dca8d0](https://github.com/assert-rs/assert_cmd/commit/72dca8d00d8084a6b9fd2c5566c1e9543db58b83))
11+
* **assert:** Context on status failures ([af52e9c5](https://github.com/assert-rs/assert_cmd/commit/af52e9c52edf3684db0f5ce23cbaa4650d0118a1), closes [#16](https://github.com/assert-rs/assert_cmd/issues/16))
12+
13+
#### Breaking Changes
14+
15+
* **assert:** Short-hand output predicates changed assert signatures ([43eceba0](https://github.com/assert-rs/assert_cmd/commit/43eceba04ad0d612f417fc46d140795115895204), closes [#2](https://github.com/assert-rs/assert_cmd/issues/2))
16+
* Switch OutputError from Fail ([1061baa0](https://github.com/assert-rs/assert_cmd/commit/1061baa03fadc70924a2bf2d0640ef679dc7178d))
17+
* **cargo:** Define a CargoError ([7bd71a8a](https://github.com/assert-rs/assert_cmd/commit/7bd71a8a67c5a29a35f3876ef49204681eca1ef6))
18+
19+
20+
121
<a name="0.3.0"></a>
222
## 0.3.0 (2018-06-07)
323

‎Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "assert_cmd"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
description = "Test CLI Applications."
55
authors = ["Pascal Hertleif <killercup@gmail.com>", "Ed Page <eopage@gmail.com>"]
66
license = "MIT OR Apache-2.0"

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Add to your `Cargo.toml`:
1414

1515
```toml
1616
[dependencies]
17-
assert_cmd = "0.3"
17+
assert_cmd = "0.4"
1818
```
1919

2020
## Example

‎src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//!
33
//! ```toml
44
//! [dependencies]
5-
//! assert_cmd = "0.3"
5+
//! assert_cmd = "0.4"
66
//! ```
77
//!
88
//! ## Example

0 commit comments

Comments
 (0)
Failed to load comments.