v1.1.0
diff --git a/CHANGELOG.md b/CHANGELOG.md index 6dd6ae0..dde5440 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md
@@ -1,7 +1,7 @@ # 1.1.0 -- Fix `hashCode` error when `props` is null -- Added `stringify` feature (optional `toString` override) +- Fix `hashCode` error when `props` is `null` ([#45](https://github.com/felangel/equatable/pull/45)) +- Added `stringify` feature (optional `toString` override) ([#45](https://github.com/felangel/equatable/pull/45)) # 1.0.3
diff --git a/README.md b/README.md index 9f8dffb..60c5d0f 100644 --- a/README.md +++ b/README.md
@@ -101,7 +101,7 @@ ```yaml dependencies: - equatable: ^1.0.0 + equatable: ^1.1.0 ``` Next, we need to install it: @@ -168,7 +168,7 @@ ### `toString` Implementation Equatable can implement `toString` method including all the given props. If you want that behaviour, just include the following: -``` +```dart @override bool get stringify => true; ```