Skip to content

Commit

Permalink
v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
felangel committed Feb 10, 2020
1 parent 02bc5a1 commit 98c31c7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ First, we need to do add `equatable` to the dependencies of the `pubspec.yaml`

```yaml
dependencies:
equatable: ^1.0.0
equatable: ^1.1.0
```
Next, we need to install it:
Expand Down Expand Up @@ -168,7 +168,7 @@ class Person extends Equatable {

### `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;
```
Expand Down

0 comments on commit 98c31c7

Please sign in to comment.