diff --git a/CHANGELOG.md b/CHANGELOG.md index 17ef966..14dc720 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## [0.1.3] - 2018-05-29 +* Error in Android 4.x because of missing permission 'READ_PROFILE' fixed +* Updated Flutter environment sdk to ">=1.19.0 <2.0.0" +* Example app code refactoring + ## [0.1.2] - 2018-05-26 * Photo and thumbnail of a contact get loaded with the contact, no need to request them later. * Example app UI slightly enhanced. diff --git a/README.md b/README.md index 485b315..cdd44e9 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ For help on editing plugin code, view the [documentation](https://flutter.io/pla ## Installation and Usage -Once you're familiar with Flutter you may install this package adding `sms` (0.1.2 or higher) to the dependencies list +Once you're familiar with Flutter you may install this package adding `sms` (0.1.3 or higher) to the dependencies list of the `pubspec.yaml` file as follow: ```yaml @@ -21,7 +21,7 @@ dependencies: flutter: sdk: flutter - sms: ^0.1.2 + sms: ^0.1.3 ``` Then run the command `flutter packages get` on the console. diff --git a/pubspec.yaml b/pubspec.yaml index 07755ae..f3738c7 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: sms description: SMS library for Flutter applications. Its allow to send, receive, query sms messages, sms delivery and query contacts info. It exposes an easy and friendly API for developing a completely functional sms app in Flutter. -version: 0.1.2 +version: 0.1.3 author: "babariviere " homepage: "https://github.com/babariviere/flutter_sms"