File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
[package ]
2
- version = " 0.1 .0" # remember to update html_root_url
2
+ version = " 0.2 .0" # remember to update html_root_url
3
3
authors = [
" David Pedersen <[email protected] >" ]
4
4
categories = [" development-tools" ]
5
5
description = " Easily compare two JSON values and get great output"
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ It uses the [`serde_json::Value`] type to represent JSON.
16
16
17
17
``` toml
18
18
[dependencies ]
19
- assert-json-diff = " 0.1 .0"
19
+ assert-json-diff = " 0.2 .0"
20
20
```
21
21
22
22
### Partial matching
@@ -136,7 +136,7 @@ That will print
136
136
json atom at path ".a.b" is missing from expected
137
137
```
138
138
139
- ### Strict matching
139
+ ### Exact matching
140
140
141
141
If you want to ensure two JSON values are * exactly* the same, use [ ` assert_json_eq ` ] ( macro.assert_json_eq.html ) .
142
142
Original file line number Diff line number Diff line change 12
12
//!
13
13
//! ```toml
14
14
//! [dependencies]
15
- //! assert-json-diff = "0.1 .0"
15
+ //! assert-json-diff = "0.2 .0"
16
16
//! ```
17
17
//!
18
18
//! ## Partial matching
168
168
unused_import_braces,
169
169
unused_qualifications
170
170
) ]
171
- #![ doc( html_root_url = "https://docs.rs/assert-json-diff/0.1 .0" ) ]
171
+ #![ doc( html_root_url = "https://docs.rs/assert-json-diff/0.2 .0" ) ]
172
172
173
173
extern crate serde;
174
174
#[ allow( unused_imports) ]
You can’t perform that action at this time.
0 commit comments