diff --git a/CHANGELOG.md b/CHANGELOG.md index edea05d..c715016 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +# 1.6.2 +- Support for Flutter `>=1.12 <=1.17` + # 1.6.1 - Support for Flutter `1.12+` diff --git a/README.md b/README.md index 59221fa..433eaac 100644 --- a/README.md +++ b/README.md @@ -3,11 +3,11 @@ The brightest, hippest, coolest router for Flutter. -[![Version](https://img.shields.io/badge/version-1.6.0-blue.svg)](https://pub.dartlang.org/packages/fluro) +[![Version](https://img.shields.io/badge/version-1.6.2-blue.svg)](https://pub.dartlang.org/packages/fluro) [![Build Status](https://travis-ci.org/theyakka/fluro.svg?branch=master)](https://travis-ci.org/theyakka/fluro) [![Coverage](https://codecov.io/gh/theyakka/fluro/branch/master/graph/badge.svg)](https://codecov.io/gh/theyakka/fluro) -Version `1.6.0` requires Flutter `>= 1.12.0` and Dart `>= 2.6.0`. If you're running an older version of Flutter, use a version `< 1.6.0`. +Version `1.6.0` (and higher) requires Flutter `>= 1.12.0` and Dart `>= 2.6.0`. If you're running an older version of Flutter, use a version `< 1.6.0`. ## Features @@ -27,7 +27,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.6.0" + fluro: "^1.6.2" ``` You can also reference the git repo directly if you want: diff --git a/example/ios/Flutter/flutter_export_environment.sh b/example/ios/Flutter/flutter_export_environment.sh index c197596..7990b61 100755 --- a/example/ios/Flutter/flutter_export_environment.sh +++ b/example/ios/Flutter/flutter_export_environment.sh @@ -5,6 +5,7 @@ export "FLUTTER_APPLICATION_PATH=/home/luke/Development/yakka/fluro/fluro-flutte export "FLUTTER_TARGET=lib/main.dart" export "FLUTTER_BUILD_DIR=build" export "SYMROOT=${SOURCE_ROOT}/../build/ios" +export "OTHER_LDFLAGS=$(inherited) -framework Flutter" export "FLUTTER_FRAMEWORK_DIR=/home/luke/Development/.sdks/flutter/bin/cache/artifacts/engine/ios" export "FLUTTER_BUILD_NAME=1.0.0" export "FLUTTER_BUILD_NUMBER=1" diff --git a/pubspec.yaml b/pubspec.yaml index 5b40492..4015789 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -2,7 +2,7 @@ name: fluro description: > Fluro is a Flutter routing library that adds flexible routing options like wildcards, named parameters and clear route definitions. -version: 1.6.1 +version: 1.6.2 homepage: https://github.com/theyakka/fluro environment: