brianegan / dart_redux_epics

Redux.dart middleware for handling actions using Dart Streams
MIT License
141 stars 22 forks source link

Update pubspec to allow rxdart 0.20.0 #20

Closed MichaelMarner closed 5 years ago

MichaelMarner commented 5 years ago

dart_redux_epics currently specifies a max version of rxDart of 0.18.0.

rxDart 0.20.0 brings a bunch of useful changes regarding combineLatest. There are a couple of breaking changes according to the rxDart changelog, but they don't appear to affect this project:

https://github.com/ReactiveX/rxdart/releases

Also allowed the latest version of test to keep up with changes to Dart and get the Travis build to pass.

brianegan commented 5 years ago

Oh, good call! Thanks for the update :)

MichaelMarner commented 5 years ago

No worries. It's worth considering whether to use ^ on the supported version - but it doesn't look like rxdart are doing strict semver on their releases.