-
Notifications
You must be signed in to change notification settings - Fork 24
Bumped num dependency version #105
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
Is |
|
It is. |
|
I am not quite sure is it minor/major fix to make a correct version bump. |
|
@not-fl3 should be 0.19.0 then. Before 1.0 the patch versions are non-breaking and minor versions are breaking. |
Rhuagh
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you update the version number in the pr? I can publish tonight, but don't have time to do the versioning myself
|
Done :) |
Rhuagh
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
bors r+
105: Bumped num dependency version r=Rhuagh a=not-fl3 The problem: ```num``` 0.1 had ```rustc_serialize``` dependency, which cant be compiled on wasm32-unknown-unknown. ```num``` 0.1 did not set ```default_features = false``` for its serde-related sub-dependencies, so enabling ```num/serde``` feature resulted ```rustc_serialize``` in the ```collision-rs``` dependencies. Switch to 0.2 was an easy fix. <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/rustgd/collision-rs/105) <!-- Reviewable:end --> Co-authored-by: not-fl3 <not.fl3@gmail.com>
Build succeeded |
The problem:
num0.1 hadrustc_serializedependency, which cant be compiled on wasm32-unknown-unknown.num0.1 did not setdefault_features = falsefor its serde-related sub-dependencies, so enablingnum/serdefeature resultedrustc_serializein thecollision-rsdependencies. Switch to 0.2 was an easy fix.This change is