Luke %!s(int64=7) %!d(string=hai) anos
pai
achega
d9ba273c88
Modificáronse 4 ficheiros con 7 adicións e 4 borrados
  1. 3 0
      CHANGELOG.md
  2. 2 2
      README.md
  3. 1 1
      example/lib/components/app/app_component.dart
  4. 1 1
      pubspec.yaml

+ 3 - 0
CHANGELOG.md

@@ -1,3 +1,6 @@
+# 1.3.1
+- Fixes an issue with the route generator (result cannot be Null)
+
 # 1.3.0
 - **BREAKING**: Parameters now return an array of results even if they have a single value.
 - Support for parameter arrays. e.g: `/some/route?color=red&color=green&color=blue`.

+ 2 - 2
README.md

@@ -3,7 +3,7 @@
 
 The brightest, hippest, coolest router for Flutter.
 
-[![Version](https://img.shields.io/badge/version-1.3.0-blue.svg)](https://pub.dartlang.org/packages/fluro)
+[![Version](https://img.shields.io/badge/version-1.3.1-blue.svg)](https://pub.dartlang.org/packages/fluro)
 [![Build Status](https://travis-ci.org/goposse/fluro.svg?branch=master)](https://travis-ci.org/goposse/fluro)
 [![Coverage](https://codecov.io/gh/goposse/fluro/branch/master/graph/badge.svg)](https://codecov.io/gh/goposse/fluro)
 
@@ -25,7 +25,7 @@ See CHANGELOG for all breaking (and non-breaking) changes.
 You should ensure that you add the router as a dependency in your flutter project.
 ```yaml
 dependencies:
- fluro: "^1.3.0"
+ fluro: "^1.3.1"
 ```
 
 You can also reference the git repo directly if you want:

+ 1 - 1
example/lib/components/app/app_component.dart

@@ -35,7 +35,7 @@ class AppComponentState extends State<AppComponent> {
       theme: new ThemeData(
         primarySwatch: Colors.blue,
       ),
-      onGenerateRoute: Application.router.generator
+      onGenerateRoute: Application.router.generator,
     );
     print("initial route = ${app.initialRoute}");
     return app;

+ 1 - 1
pubspec.yaml

@@ -1,6 +1,6 @@
 name: fluro
 description: The brightest, hippest, coolest router for Flutter.
-version: 1.3.0
+version: 1.3.1
 author: Posse Productions LLC <apps@goposse.com>
 homepage: https://github.com/goposse/fluro