chore: equatable v1.2.1
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 42f1831..440334b 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 513df79..0adc4e2 100644
--- a/README.md
+++ b/README.md
@@ -105,7 +105,7 @@
 
 ```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 abddba9..32c9e84 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"