diff --git a/CHANGELOG.md b/CHANGELOG.md index 42f1831f..440334bd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# 1.2.1 + +- Fix `hashCode` computation for `Iterables` ([#74](https://github.com/felangel/equatable/issues/74)) +- Minor documentation improvements + # 1.2.0 - Added `EquatableConfig` for global `stringify` configuration ([#69](https://github.com/felangel/equatable/pull/69)) diff --git a/README.md b/README.md index 513df794..0adc4e21 100644 --- a/README.md +++ b/README.md @@ -105,7 +105,7 @@ First, we need to do add `equatable` to the dependencies of the `pubspec.yaml` ```yaml dependencies: - equatable: ^1.2.0 + equatable: ^1.2.1 ``` Next, we need to install it: diff --git a/pubspec.yaml b/pubspec.yaml index abddba91..32c9e84d 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,10 @@ name: equatable description: An abstract class that helps to implement equality without needing to explicitly override == and hashCode. -version: 1.2.0 +version: 1.2.1 +repository: https://github.com/felangel/equatable +issue_tracker: https://github.com/felangel/equatable/issues homepage: https://github.com/felangel/equatable +documentation: https://github.com/felangel/equatable environment: sdk: ">=2.0.0 <3.0.0"