From 77152a75270a8a9637fc9a989e66cbbb8cc95159 Mon Sep 17 00:00:00 2001 From: Ayush Agarwal Date: Wed, 14 Oct 2020 10:58:22 +0530 Subject: [PATCH] bump version to v2.4.0 --- CHANGELOG.md | 31 ++++++++++++++++++++++++++++++- README.md | 2 +- pubspec.yaml | 2 +- 3 files changed, 32 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 32cc0e7..2e52fc1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,14 @@ -## 2.2.0 +## 2.4.0 +**Issues Fixed** +- Issue [#124](https://github.com/aagarwal1012/Animated-Text-Kit/pull/124) + +- Issue [#123](https://github.com/aagarwal1012/Animated-Text-Kit/pull/123) + +- Issue [#122](https://github.com/aagarwal1012/Animated-Text-Kit/pull/122) + +- Issue [#121](https://github.com/aagarwal1012/Animated-Text-Kit/pull/121) + +## 2.3.0 **New Animated Text** - Wavy Text by [@SirusCodes](https://github.com/SirusCodes). @@ -8,6 +18,25 @@ - Issue [#107](https://github.com/aagarwal1012/Animated-Text-Kit/pull/107) +## 2.2.0 + +**Issues Fixed** + +* Issue [#51](https://github.com/aagarwal1012/Animated-Text-Kit/issues/51) + +**Code Review** [#81](https://github.com/aagarwal1012/Animated-Text-Kit/pull/81) + +- Removed obsolete `new` keywords. + - Added types to collection and function variables. + - Added `final` and `const` keywords. + - Replaced `null` guards with concise `?.` and `??` operators. + - Added missing null check on `dispose` for `FadeAnimatedTextKit`. + - In `fade.dart`, renamed the `_RotatingTextState` class to `_FadeTextState` to be consistent with the overall pattern and avoid confusion with `_RotatingTextState` in `rotate.dart`. + +**Warning**: + + - Removed `onNextBeforePause` from `ColorizeAnimatedTextKit` because it was not referenced. + ## 2.1.0 **Issues Fixed** diff --git a/README.md b/README.md index 36251bb..9d5fd31 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ Add this to your package's `pubspec.yaml` file: ```yaml dependencies: - animated_text_kit: ^2.2.0 + animated_text_kit: ^2.4.0 ``` ### 2. Install it diff --git a/pubspec.yaml b/pubspec.yaml index 54c6ab7..98003da 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: animated_text_kit description: A flutter package project which contains a collection of cool and beautiful text animations. -version: 2.2.0 +version: 2.4.0 author: Ayush Agarwal homepage: https://github.com/aagarwal1012/Animated-Text-Kit/ maintainer: Ayush Agarwal (@aagarwal1012)