-
I'm suffering from #2203 and #2071 and was happy to see that these issues are both fixed months ago on master. I upgraded to 1.4.6 but that didn't help as there are "1204 commits to master since this release". What is the general plan for releases from master? I've been looking for an explanation but haven't found one. It might be handy if it was explained on the readme. Should I be using master instead of 1.4.x? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Master tracks the next feature release, as this is common in the rust ecosystem (and likely nearly everywhere else). As the next release is planed to be a major version bump we try to batch as many breaking changes as we see happening in the next time into this release. That means it take some time to implement all this stuff, especially if you only work on this project in your free time. In In addition to that this means we do not have the capacity to backport features that don't need the breaking changes in 2.0 to an older release as this would need even more resources. We plan to release all new features someday as 2.0, but we cannot give you an ETA. If you want this to happen sooner consider contributing something or found someone to do this for you.
That's up to you, but keep in mind that we don't guarantee anything there (though we are happy to receive bug reports and general reviews of the design). Additionally things can and will break there between versions.
#2203 does not happen with any release, as this depends on the caching that is only available in the master branch. I consider the caching itself as new feature, not as bug fix. Therefore this is nothing that should be released as patch release.
See the corresponding milestone for list of open issues we want to address before the next release. As this is a free time project we will not give any timeline about when this work will be finished. That release will likely come faster if more people start contributing something on that list. |
Beta Was this translation helpful? Give feedback.
Master tracks the next feature release, as this is common in the rust ecosystem (and likely nearly everywhere else). As the next release is planed to be a major version bump we try to batch as many breaking changes as we see happening in the next time into this release. That means it take some time to implement all this…