equatable v0.6.1
diff --git a/CHANGELOG.md b/CHANGELOG.md
index d37e202..deb6d55 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+# 0.6.1
+
+- Minor documentation updates
+
 # 0.6.0
 
 - The `props` getter override is required for both `Equatable` and `EquatableMixin`
diff --git a/lib/src/equatable.dart b/lib/src/equatable.dart
index f5b0674..3187cf8 100644
--- a/lib/src/equatable.dart
+++ b/lib/src/equatable.dart
@@ -3,9 +3,6 @@
 
 /// A base class to facilitate [operator==] and [hashCode] overrides.
 ///
-/// const constructors are possible, but must be performed by overriding
-/// [props] instead of using the super constructor:
-///
 /// ```dart
 /// class ConstTest extends Equatable {
 ///   const ConstTest(this.a);
diff --git a/pubspec.yaml b/pubspec.yaml
index 57e1659..dcd9f3a 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -1,6 +1,6 @@
 name: equatable
 description: An abstract class that helps to implement equality without needing to explicitly override == and hashCode.
-version: 0.6.0
+version: 0.6.1
 author: Felix Angelov <felangelov@gmail.com>
 homepage: https://github.com/felangel/equatable