From caeb7af4d1011de718d23a4021ed558116a9a975 Mon Sep 17 00:00:00 2001 From: Ayush Agarwal Date: Sun, 25 Oct 2020 00:40:53 +0530 Subject: [PATCH] bump version to v2.5.0 --- .gitignore | 3 ++- CHANGELOG.md | 9 +++++++++ README.md | 2 +- pubspec.yaml | 2 +- 4 files changed, 13 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index e97a0b1..07f857e 100644 --- a/.gitignore +++ b/.gitignore @@ -8,7 +8,8 @@ coverage/ # Edit at https://www.toptal.com/developers/gitignore?templates=code,flutter,macos ### Code ### -.vscode/* +.idea +.vscode !.vscode/settings.json !.vscode/tasks.json !.vscode/launch.json diff --git a/CHANGELOG.md b/CHANGELOG.md index fc497c9..d4419e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## 2.5.0 +**Bug Fixes and Enhancements** +- Increase test coverage [#137](https://github.com/aagarwal1012/Animated-Text-Kit/pull/137) and [#135](https://github.com/aagarwal1012/Animated-Text-Kit/pull/135). +- Removed redundant _texts variables [#133](https://github.com/aagarwal1012/Animated-Text-Kit/pull/133). +- Added pedantic lint rules. [#132](https://github.com/aagarwal1012/Animated-Text-Kit/pull/132). +- Refactored code to move default logic from the State class to the StatefulWidget [#131](https://github.com/aagarwal1012/Animated-Text-Kit/pull/131). +- Revised _textKey to not be a global variable. Resolves [#129](https://github.com/aagarwal1012/Animated-Text-Kit/issues/129) issue -- PR [#130](https://github.com/aagarwal1012/Animated-Text-Kit/pull/130). +- Other basic improvements [#136](https://github.com/aagarwal1012/Animated-Text-Kit/pull/136) and [#134](https://github.com/aagarwal1012/Animated-Text-Kit/pull/134). + ## 2.4.1 **Issue Fixed** - Issue [#125](https://github.com/aagarwal1012/Animated-Text-Kit/issues/125) diff --git a/README.md b/README.md index 211585f..c453edd 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.4.1 + animated_text_kit: ^2.5.0 ``` ### 2. Install it diff --git a/pubspec.yaml b/pubspec.yaml index f309f9d..d63fb77 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.4.1 +version: 2.5.0 author: Ayush Agarwal homepage: https://github.com/aagarwal1012/Animated-Text-Kit/ maintainer: Ayush Agarwal (@aagarwal1012)