Skip to content

Commit 050a1eb

Browse files
committedFeb 21, 2020
Bump version to 1.0.3
1 parent c47ffdd commit 050a1eb

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed
 

‎CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,16 @@ for Rust libraries in [RFC #1105](https://github.com/rust-lang/rfcs/blob/master/
66

77
## Unreleased
88

9-
- Introduce non-panicing functions with `assert_json_include_no_panic` and `assert_json_eq_no_panic`.
9+
None.
1010

1111
### Breaking changes
1212

1313
None.
1414

15+
## [1.0.3] - 2020-02-21
16+
17+
- Introduce non-panicking functions with `assert_json_include_no_panic` and `assert_json_eq_no_panic`.
18+
1519
## [1.0.2] - 2020-02-19
1620

1721
- Internal diffing algorithm simplified. There should be no external changes. Some error messages might have changed, but everything that passed/failed before should still do the same.
@@ -46,6 +50,7 @@ None.
4650

4751
Initial release.
4852

53+
[1.0.3]: https://github.com/davidpdrsn/assert-json-diff/compare/v1.0.2...1.0.3
4954
[1.0.2]: https://github.com/davidpdrsn/assert-json-diff/compare/v1.0.1...1.0.2
5055
[1.0.1]: https://github.com/davidpdrsn/assert-json-diff/compare/v1.0.0...1.0.1
5156
[1.0.0]: https://github.com/davidpdrsn/assert-json-diff/compare/v0.2.1...1.0.0

‎Cargo.toml

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

‎src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@
162162
unused_qualifications,
163163
unknown_lints
164164
)]
165-
#![doc(html_root_url = "https://docs.rs/assert-json-diff/1.0.2")]
165+
#![doc(html_root_url = "https://docs.rs/assert-json-diff/1.0.3")]
166166

167167
extern crate serde;
168168
#[allow(unused_imports)]

0 commit comments

Comments
 (0)