-
Notifications
You must be signed in to change notification settings - Fork 204
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" } |
@sosthene-nitrokey That's fair. I don't intent to put any pressure on you (or anyone) but if that looks like it will take some time, would you consider creating a 0.8.0 branch with some fixes (I'm thinking of #530) applied and/or backported and doing a 0.8.1 first? |
I'm not the maintainer of this library, I can't prepare releases. At Nitrokey we'd like to see #502 be merged and released when possible too. From my point of view the PR is ready for merging. My understanding is that a 0.8.1 release could include #502 and the |
We have also been discussing a 1.0 release, but that's a bit further in the future to get dependencies to 1.0 and everything in #494. I'm not opposed to a 0.9 until then, what do you think @rust-embedded/libs ? |
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: