From 4d9bfa8e62db79fbb6070c1678f540f6f4a5de22 Mon Sep 17 00:00:00 2001 From: Felix Angelov Date: Wed, 20 Nov 2024 21:56:58 -0600 Subject: [PATCH] chore: v2.0.6 --- CHANGELOG.md | 13 +++++++++++++ LICENSE | 2 +- pubspec.yaml | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index af18d593..55e47778 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'` when computing `hashCode` diff --git a/LICENSE b/LICENSE index 9844d3b2..e6470673 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 5ac736fa..c3c31095 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