Skip to content

Commit eafb57d

Browse files
committed
Version 0.2.1
1 parent 09b39c1 commit eafb57d

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

Diff for: CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,12 @@ N/A
2020

2121
### Fixed
2222

23+
N/A
24+
25+
## [0.2.1] - 2018-11-15
26+
27+
### Fixed
28+
2329
- Fix wrong error message when a JSON atom was missing from actual.
2430

2531
## [0.2.0] - 2018-11-16
@@ -36,4 +42,5 @@ N/A
3642

3743
Initial release.
3844

45+
[0.2.1]: https://github.com/davidpdrsn/assert-json-diff/compare/v0.2.0...v0.2.1
3946
[0.2.0]: https://github.com/davidpdrsn/assert-json-diff/compare/v0.1.0...v0.2.0

Diff for: Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
version = "0.2.0" # remember to update html_root_url
2+
version = "0.2.1" # remember to update html_root_url
33
authors = ["David Pedersen <[email protected]>"]
44
categories = ["development-tools"]
55
description = "Easily compare two JSON values and get great output"

Diff for: README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ It uses the [`serde_json::Value`] type to represent JSON.
1616

1717
```toml
1818
[dependencies]
19-
assert-json-diff = "0.2.0"
19+
assert-json-diff = "0.2.1"
2020
```
2121

2222
### Partial matching
@@ -157,7 +157,7 @@ fn main() {
157157
This will panic with the error message:
158158

159159
```
160-
json atom at path ".a.b" is missing from rhs
160+
json atom at path ".a.b" is missing from lhs
161161
```
162162

163163
License: MIT

Diff for: src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
//!
1313
//! ```toml
1414
//! [dependencies]
15-
//! assert-json-diff = "0.2.0"
15+
//! assert-json-diff = "0.2.1"
1616
//! ```
1717
//!
1818
//! ## Partial matching
@@ -168,7 +168,7 @@
168168
unused_import_braces,
169169
unused_qualifications
170170
)]
171-
#![doc(html_root_url = "https://docs.rs/assert-json-diff/0.2.0")]
171+
#![doc(html_root_url = "https://docs.rs/assert-json-diff/0.2.1")]
172172

173173
extern crate serde;
174174
#[allow(unused_imports)]

0 commit comments

Comments
 (0)