eredo / dartson

Dartson is a Dart library that can be used to convert Dart objects into a JSON string.
MIT License
79 stars 29 forks source link

Please update da #51

Closed juliovedovatto closed 6 years ago

juliovedovatto commented 6 years ago

Hello.

First of all, great plugin to manipulate JSON on Dart ;)

But I found a problem when trying to update to the 1.0.0 version. I followed the README at https://pub.dartlang.org/packages/dartson/versions/1.0.0-alpha+1

If I use in my pubspec.yaml this:

dependencies:
  dartson: ^1.0.0

It wil fail to install the package.

Running "flutter packages get" in app...
Because app depends on dartson ^1.0.0 which doesn't match any versions, version solving failed.

I fixed it, updating my pubspec.yaml to:

dependencies:
  dartson: ^1.0.0-alpha+1

There was some kind of confusion and the Dart package repository adopted 1.0.0-alpha+1 as the official version.

Could you update readme? I think other users may face this problem too.

Thanks!