diff --git a/CHANGELOG.md b/CHANGELOG.md index f963835..db2d0d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ # Changelog All notable changes to this project will be documented in this file. +## [0.1.2] - 2019-09-11 +### Fixed +- [#1](https://github.com/mobiten/flutter_staggered_animations/issues/1) Do not forward animation after dispose +- Remove misleading usage of staggeredList instead of staggeredGrid in GridView sample + ## [0.1.1] - 2019-09-05 ### Added - Logo in README diff --git a/README.md b/README.md index 92d6570..03c7741 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ Easily add staggered animations to your `ListView`, `GridView`, `Column` and `Ro Add the package as a dependency in your pubspec.yaml file. ```yaml dependencies: - flutter_staggered_animations: "^0.1.1" + flutter_staggered_animations: "^0.1.2" ``` ### Import diff --git a/example/pubspec.lock b/example/pubspec.lock index f6b726a..a881b5c 100644 --- a/example/pubspec.lock +++ b/example/pubspec.lock @@ -40,7 +40,7 @@ packages: path: ".." relative: true source: path - version: "0.1.1" + version: "0.1.2" flutter_test: dependency: "direct dev" description: flutter diff --git a/pubspec.yaml b/pubspec.yaml index ba60fce..7e1a655 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: flutter_staggered_animations description: Easily add staggered animations to your ListView, GridView, Column and Row children as shown in Material Design guidelines -version: 0.1.1 +version: 0.1.2 authors: - Aurélien Lepage - Charles-Henri Dumalin