lazy-static.rs icon indicating copy to clipboard operation
lazy-static.rs copied to clipboard

why new version is not published on crates.io

Open cstkingkey opened this issue 2 years ago • 7 comments

cstkingkey avatar May 13 '22 06:05 cstkingkey

Same question.

the readme.md says:

lazy_static = "1.5.0"

but

$ cargo build
    Updating crates.io index
error: failed to select a version for the requirement `lazy_static = "^1.5.0"`
candidate versions found which didn't match: 1.4.0, 1.3.0, 1.2.0, ...

Can we make a new release? Thanks.

mw66 avatar May 30 '22 13:05 mw66

Hi @cstkingkey @mw66 :wave:

We're in a bit of a permissions bind that's keeping new releases from making their way to crates.io.

At the moment @Kimundi is the only owner of this crate, and I'm not currently part of the @rust-lang-nursery/libs team who are also able to push new releases up.

KodrAus avatar May 31 '22 22:05 KodrAus

@Kimundi It'd be great if we can get a new release. Getting deprecated usage warnings with 0.1.4.

omarabid avatar Jul 12 '22 03:07 omarabid

Any updates? :)

Razorr1996 avatar Aug 15 '22 14:08 Razorr1996

Hi @cstkingkey @mw66 👋

We're in a bit of a permissions bind that's keeping new releases from making their way to crates.io.

At the moment @Kimundi is the only owner of this crate, and I'm not currently part of the @rust-lang-nursery/libs team who are also able to push new releases up.

@KodrAus can we add a rule that each project has at least two owners to prevent issues like this in the future?

mw66 avatar Aug 15 '22 16:08 mw66

I am on that team -- @KodrAus if the master branch is ready to publish 1.5.0, I can do that for you.

cuviper avatar Aug 15 '22 17:08 cuviper

Any updates? :)

Until the 1.5.0 version is ready, it seems you can use this in your cargo.toml:

lazy_static = { git = "https://github.com/rust-lang-nursery/lazy-static.rs", branch = "master" }

Bjohnson131 avatar Oct 12 '22 20:10 Bjohnson131