chore: v2.0.6 (#185)
diff --git a/CHANGELOG.md b/CHANGELOG.md index af18d59..55e4777 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md
@@ -1,3 +1,16 @@ +# 2.0.6 + +- perf: improve equality comparison performance ([#173](https://github.com/felangel/equatable/issues/173)) +- docs: improve snippet in `README` ([#184](https://github.com/felangel/equatable/issues/184)) +- chore: upgrade example to Dart >=3.5.0 +- chore: add funding and topics to `pubspec.yaml` ([#176](https://github.com/felangel/equatable/issues/176)) +- chore: add performance benchmarks +- chore: fix typo in inline API docs ([#170](https://github.com/felangel/equatable/issues/170)) +- refactor: simplify `toString` logic ([#140](https://github.com/felangel/equatable/issues/140)) +- docs: add nullable props example to `README` +- refactor: update `analysis_options.yaml` ([#169](https://github.com/felangel/equatable/issues/169)) +- fix: add `@immutable` to `EquatableMixin` ([#154](https://github.com/felangel/equatable/issues/154)) + # 2.0.5 - fix: resolves `T not a subtype of type 'Comparable<dynamic>'` when computing `hashCode`
diff --git a/LICENSE b/LICENSE index 9844d3b..e647067 100644 --- a/LICENSE +++ b/LICENSE
@@ -1,6 +1,6 @@ MIT License -Copyright (c) 2018 Felix Angelov +Copyright (c) 2024 Felix Angelov Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal
diff --git a/pubspec.yaml b/pubspec.yaml index 5ac736f..c3c3109 100644 --- a/pubspec.yaml +++ b/pubspec.yaml
@@ -1,6 +1,6 @@ name: equatable description: A Dart package that helps to implement value based equality without needing to explicitly override == and hashCode. -version: 2.0.5 +version: 2.0.6 repository: https://github.com/felangel/equatable issue_tracker: https://github.com/felangel/equatable/issues homepage: https://github.com/felangel/equatable