Skip to content

Commit

Permalink
Bump to version 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
davidpdrsn committed Feb 15, 2019
1 parent 6b41d9f commit a95f878
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@ N/A

### Fixed

N/A

## [1.0.0] - 2019-02-15

### Fixed

- Make macros work with trailing comma

## [0.2.1] - 2018-11-15
Expand All @@ -42,5 +48,6 @@ N/A

Initial release.

[1.0.0]: https://github.com/davidpdrsn/assert-json-diff/compare/v0.2.1...v1.0.0
[0.2.1]: https://github.com/davidpdrsn/assert-json-diff/compare/v0.2.0...v0.2.1
[0.2.0]: https://github.com/davidpdrsn/assert-json-diff/compare/v0.1.0...v0.2.0
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
version = "0.2.1" # remember to update html_root_url
version = "1.0.0" # remember to update html_root_url
authors = ["David Pedersen <[email protected]>"]
categories = ["development-tools"]
description = "Easily compare two JSON values and get great output"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ It uses the [`serde_json::Value`] type to represent JSON.

```toml
[dependencies]
assert-json-diff = "0.2.1"
assert-json-diff = "1.0.0"
```

### Partial matching
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
//!
//! ```toml
//! [dependencies]
//! assert-json-diff = "0.2.1"
//! assert-json-diff = "1.0.0"
//! ```
//!
//! ## Partial matching
Expand Down Expand Up @@ -168,7 +168,7 @@
unused_import_braces,
unused_qualifications
)]
#![doc(html_root_url = "https://docs.rs/assert-json-diff/0.2.1")]
#![doc(html_root_url = "https://docs.rs/assert-json-diff/1.0.0")]

extern crate serde;
#[allow(unused_imports)]
Expand Down

0 comments on commit a95f878

Please sign in to comment.