-
Notifications
You must be signed in to change notification settings - Fork 195
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
0.9.0 Release #529
Comments
Should be merged before a 0.9 release to reduce the risk of breakage of existing code.
I introduced the change that made |
I double checked the error; from_str no longer exists so I changed it to |
Are you directly depending on the updated heapless with [dependencies]
heapless = { git = "https://github.com/rust-embedded/heapless.git" } ? That leads to duplicate dependencies, and you probably would still have the same error even without the Instead of depending on heapless through git, you maybe can patch it: [dependencies]
heapless = "0.8.0"
[patch.crates-io]
heapless = { git = "https://github.com/rust-embedded/heapless.git" } |
What is there still to be done to release a new version of heapless?
There's a pretty sizeable changelog, and I've had to pin my heapless dependency on a project to the latest git release since I have a need for Vec::drain.
I also encountered compile errors trying to construct a String::from_str due to String now being a type alias for a StringInner compared to crates that are still targeting the 0.8.0 release with an incompatible type (e.g. embedded_svc::wifi::ClientConfiguration).
The text was updated successfully, but these errors were encountered: