From 30ae4378df7e39ed5f3128473fa3c59ee1b064b5 Mon Sep 17 00:00:00 2001 From: Luke Date: Tue, 7 Apr 2020 10:46:20 -0700 Subject: [PATCH] Remove upper bounds on pubspec (#163) * remove upper constraint for flutter environment * update docs Co-authored-by: Luke Pighetti --- CHANGELOG.md | 3 +++ README.md | 4 ++-- pubspec.yaml | 4 ++-- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c715016..a4e957a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +# 1.6.3 +- Remove upper bounds on Flutter SDK checks because Flutter releases are a ridiculous mess + # 1.6.2 - Support for Flutter `>=1.12 <=1.17` diff --git a/README.md b/README.md index 433eaac..7d952f1 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ The brightest, hippest, coolest router for Flutter. -[![Version](https://img.shields.io/badge/version-1.6.2-blue.svg)](https://pub.dartlang.org/packages/fluro) +[![Version](https://img.shields.io/badge/version-1.6.3-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) @@ -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.2" + fluro: "^1.6.3" ``` You can also reference the git repo directly if you want: diff --git a/pubspec.yaml b/pubspec.yaml index 4015789..c939c16 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -2,12 +2,12 @@ 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.2 +version: 1.6.3 homepage: https://github.com/theyakka/fluro environment: sdk: ">=2.6.0 <3.0.0" - flutter: ">=1.12.0 <1.17.0" + flutter: ">=1.12.0" dependencies: flutter: