Skip to content

Commit d337d90

Browse files
committedOct 10, 2018
chore: Release v0.10.0
1 parent 680cabb commit d337d90

File tree

4 files changed

+20
-3
lines changed

4 files changed

+20
-3
lines changed
 

‎CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
<a name="0.10.0"></a>
2+
## 0.10.0 (2018-10-10)
3+
4+
5+
#### Breaking Changes
6+
7+
* Remove deprecated functions ([fa01930c](https://github.com/assert-rs/assert_cmd/commit/fa01930cb9933d8b1ac024773a8bbf7330783507), breaks [#](https://github.com/assert-rs/assert_cmd/issues/))
8+
* Better group API ([b1376f9a](https://github.com/assert-rs/assert_cmd/commit/b1376f9a29cbf093c17d1e3a641ee73aa5524e58), closes [#40](https://github.com/assert-rs/assert_cmd/issues/40), breaks [#](https://github.com/assert-rs/assert_cmd/issues/))
9+
* Use predicates 1.0 ([1e0ece83](https://github.com/assert-rs/assert_cmd/commit/1e0ece8324dccb5d02c42c62b1ab2dea8032a924), closes [#8](https://github.com/assert-rs/assert_cmd/issues/8), breaks [#](https://github.com/assert-rs/assert_cmd/issues/))
10+
* **cargo:** Reuse the current target ([403f612a](https://github.com/assert-rs/assert_cmd/commit/403f612ab66e7ccacc28c59ca1c52a5c230d4f9b), closes [#44](https://github.com/assert-rs/assert_cmd/issues/44), breaks [#](https://github.com/assert-rs/assert_cmd/issues/))
11+
12+
#### Features
13+
14+
* **assert:** Simplify passing in Predicate<str> ([ee4c45ed](https://github.com/assert-rs/assert_cmd/commit/ee4c45ede885a57a2d2e2b5fe74801b12578893a), closes [#32](https://github.com/assert-rs/assert_cmd/issues/32))
15+
16+
17+
118
<a name="0.9.1"></a>
219
## 0.9.1 (2018-08-09)
320

‎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.9.1"
3+
version = "0.10.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.9"
17+
assert_cmd = "0.10"
1818
```
1919

2020
## Example

‎src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//!
77
//! ```toml
88
//! [dependencies]
9-
//! assert_cmd = "0.9"
9+
//! assert_cmd = "0.10"
1010
//! ```
1111
//!
1212
//! ## Overview

0 commit comments

Comments
 (0)
Failed to load comments.