Loosen dependencies so that nullsafety versions are acceptable. (#199)

The strict dependencies were making it impossible to use in the plugins repo when combined with the nullsafety version of the process package.
This commit is contained in:
Greg Spencer
2020-08-20 17:35:21 -07:00
committed by GitHub
parent bf86094ab1
commit b687b999bd
2 changed files with 8 additions and 4 deletions

View File

@ -1,3 +1,7 @@
## [0.1.2] - Reduce dependencies on external libraries.
* Broaden dependencies to allow nullsafety version of process, meta, and path to be OK.
## [0.1.1] - Reduce dependencies on external libraries.
* Remove flutter, flutter_test from pubspec dependencies.

View File

@ -1,15 +1,15 @@
name: xdg_directories
description: A Dart package for reading XDG directory configuration information on Linux.
version: 0.1.1
version: 0.1.2
homepage: https://github.com/flutter/packages/tree/master/packages/xdg_directories
environment:
sdk: ">=2.3.0 <3.0.0"
dependencies:
meta: ^1.2.2
path: ^1.6.4
process: ^3.0.12
meta: ">=1.2.2 <2.0.0"
path: ">=1.6.4 <2.0.0"
process: ">=3.0.12 <5.0.0"
dev_dependencies:
test: ^1.15.3