-
Notifications
You must be signed in to change notification settings - Fork 59
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
Do a new release. #66
Comments
As for us, using a cargo override (at the portability's root toml) works fine during development. I'd love to see #65 resolved in an eventually published version. |
I was going to publish a while ago but hit something that needed a bit more thought. The objc crate doesn't specify a minimum required version of rust, but it works pretty far back (maybe all the way to 1.0). When testing the new version I realized it stopped working on at least 1.14 because of:
I don't know if anyone is still using objc on rust pre-1.24 and objc doesn't have any official policy about this, but... I'm a little uncomfortable bumping the minimum version up so far in a patch version. I might look into how to make this change backwards compatible before publishing. |
As mentioned in #66, the new release will just be a patch release. To be on the safe side, we can preserve backwards compatibility by working around the following two incompatibilities: * omitting the field name when initializing `Sel`, which requires rust 1.17 * using `AtomicPtr::new` in a constant, which requires rust 1.24
Version 0.2.3 is published! |
It would be nice to have a new release with selector caching.
The text was updated successfully, but these errors were encountered: