-
Notifications
You must be signed in to change notification settings - Fork 299
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
Make new release #290
Comments
Hi @corneliusroemer. We are planning a release on the first quarter of next year. We don't have enough resources to do more frequent releases. |
Here are my two cents as a package maintainer of the Nixpkgs project. I recently found that updating An official release would be helpful to software packaging projects like Nixpkgs, as release tags are often more accessible than a pre-releasing revision. I've heard that some other packaging projects discourage packaging against an unstable upstream version. Still, I understand that making an official release is not just about adding a Git tag but implies much more effort and further support. Thank you for maintaining such a great project, and I'm looking forward to the new release! |
I have a branch with 2.31 + just the mac fixes here: https://github.com/rhpvorderman/isa-l/tree/macos-arm-patch The conda-forge build also includes those patches. |
Thanks for your input,@ShamrockLee. Would adding a tag be somewhat useful at the moment? We are not in a position to make a release now. |
Thank you for replying!
It would be helpful if the tag is in a similar format to other versions, like v2.32.0-<preXX/devXX/etc.> or v2.31.0-<...>. Stable releases are often mapped to git tags.which means we would write something like ( stdenv.mkDerivation (finalAttrs: {
pname = "isa-l";
version = "2.31.0";
src = fetchFromGitHub {
owner = "intel";
repo = "isa-l";
rev = "v{finalAttrs.version}";
hash = "sha256-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=";
};
...;
}) As for unstable versions, the Although Nix's |
It would be amazing if you could make another release now officially supporting osx-arm64
I'd be happy to test a release candidate
The text was updated successfully, but these errors were encountered: