diff --git a/CHANGELOG.md b/CHANGELOG.md index ba1c08ec..e3d310c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 0.3.2 + +* fixes compatibility with spotify-auth dependency above version 1.2.0 (thanks [itsMatoosh](https://github.com/itsMatoosh)) + * spotify introduced some breaking changes: Rename classes from AuthenticationClassName to AuthorizationClassName + ## 0.3.1 * fixes wrong links and incorrect docs diff --git a/README.md b/README.md index ede27b4b..94d17ead 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # spotify_sdk [![licence](https://img.shields.io/badge/licence-MIT-blue.svg)](https://github.com/IamTobi/spotify_sdk/blob/master/LICENSE) -[![pub package](https://img.shields.io/badge/pub-0.3.1-orange)](https://pub.dev/packages/spotify_sdk) +[![pub package](https://img.shields.io/badge/pub-0.3.2-orange)](https://pub.dev/packages/spotify_sdk) ## Description diff --git a/example/lib/main.dart b/example/lib/main.dart index 89d271da..18586510 100644 --- a/example/lib/main.dart +++ b/example/lib/main.dart @@ -68,17 +68,17 @@ class _HomeState extends State { Divider(), Text("Player State", style: TextStyle(fontSize: 16)), _connected - ? PlayerStateWidget() - : Center( - child: Text("Not connected"), - ), + ? PlayerStateWidget() + : Center( + child: Text("Not connected"), + ), Divider(), Text("Player Context", style: TextStyle(fontSize: 16)), _connected - ? PlayerContextWidget() - : Center( - child: Text("Not connected"), - ), + ? PlayerContextWidget() + : Center( + child: Text("Not connected"), + ), Divider(), Row( mainAxisAlignment: MainAxisAlignment.spaceEvenly, @@ -150,10 +150,10 @@ class _HomeState extends State { ], ), _loading - ? Container( - color: Colors.black12, - child: Center(child: CircularProgressIndicator())) - : SizedBox(), + ? Container( + color: Colors.black12, + child: Center(child: CircularProgressIndicator())) + : SizedBox(), ], ); } @@ -397,6 +397,6 @@ class _HomeState extends State { void setStatus(String code, {String message = ""}) { var text = message.isEmpty ? "" : " : $message"; - _logger.d("$code + $text"); + _logger.d("$code$text"); } } diff --git a/pubspec.yaml b/pubspec.yaml index 9f20c2d4..1a28e0d1 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: spotify_sdk -description: A flutter plugin that let's you communicate with the flutter sdk -version: 0.3.1 +description: A flutter plugin that let's you communicate with the spotify sdk and auth lib +version: 0.3.2 homepage: https://github.com/brim-borium/spotify_sdk issue_tracker: https://github.com/brim-borium/spotify_sdk/issues