brianegan / dart_redux_epics

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

Upgrading rxdart to the latest #1

Closed johnbland-wf closed 6 years ago

johnbland-wf commented 6 years ago

Is there a technical reason why rxdart is limited to 0.14.x? Can it be upgraded without a major haul?

We're ok doing the work. I just wanted to check.

johnbland-wf commented 6 years ago

Clarity: rxdart is on 0.14.x, but the limited range here could cause problems in the future so I'm checking to see if there is a major reason for the limited range.

zoechi commented 6 years ago

That's actually how it should be. For semantic versioning minor version increments are used for breaking changes for versions < 1.0.0. Non-breaking changes should just update the build number. For versions > 1.0.0 the major version is required to be incremented for breaking changes.

johnbland-wf commented 6 years ago

You state the problem clearly. As you noticed on https://github.com/ReactiveX/rxdart/issues/109, I'm hoping rxdart can get updated to a 1.0 so this limited range isn't required anymore.