diff --git a/CHANGELOG.md b/CHANGELOG.md index 2c2c9d7..68b4d30 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## [0.1.0+3] - April 22, 2020 + +* Update description +* Fix typo: checkbox_list tile_formfield.dart --> checkbox_list_tile_formfield.dart + ## [0.1.0+2] - April 22, 2020 * Update description diff --git a/example/pubspec.lock b/example/pubspec.lock index 1a76b29..5a3ae0f 100644 --- a/example/pubspec.lock +++ b/example/pubspec.lock @@ -42,7 +42,7 @@ packages: path: ".." relative: true source: path - version: "0.1.0+2" + version: "0.1.0+3" collection: dependency: transitive description: diff --git a/lib/checkbox_formfield.dart b/lib/checkbox_formfield.dart index dd7afee..e050ea8 100644 --- a/lib/checkbox_formfield.dart +++ b/lib/checkbox_formfield.dart @@ -1,4 +1,4 @@ library checkbox_formfield; -export './checkbox_list tile_formfield.dart'; +export './checkbox_list_tile_formfield.dart'; export './checkbox_icon_formfield.dart'; diff --git a/lib/checkbox_list tile_formfield.dart b/lib/checkbox_list_tile_formfield.dart similarity index 100% rename from lib/checkbox_list tile_formfield.dart rename to lib/checkbox_list_tile_formfield.dart diff --git a/pubspec.yaml b/pubspec.yaml index 42bdf06..d396cbd 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: checkbox_formfield -description: This package contains checkbox widgets that can be used as FormField. As of April 2020, Flutter does not provide easy-to-use checkbox FormField to developers, so this package instead can provide a simple way to implement checkbox FormField. This package is especially for Flutter beginners who are not familiar with FormField or are not sure how to do “extends FormField” to make arbitrary widgets become FormField. -version: 0.1.0+2 +description: This package contains checkbox widgets that can be used as FormField for Flutter beginners. +version: 0.1.0+3 homepage: https://reidha.github.io/ repository: https://github.com/reidha/checkbox_formfield