rust-lang-nursery / lazy-static.rs

A small macro for defining lazy evaluated static variables in Rust.
Apache License 2.0
1.9k stars 111 forks source link

add minimum version to readme #123

Closed KodrAus closed 5 years ago

KodrAus commented 5 years ago

Closes #114

There was a bit of miscommunication in our 1.1.0 release where we broke users who were depending on lazy_static on compilers older than the one we were explicitly testing against. This PR adds a note to the readme about what our minimum supported version is and how we change it.

The minimum version is based on the version we explicitly test in CI, which is currently 1.21.0. It also outlines a policy for bumping the minimum version in minor releases if we need to. I think it's fair to say that we try hard not to bump that version unnecessarily, but I didn't want to get too defensive about it in the readme.

cc @jethrogb @BurntSushi

BurntSushi commented 5 years ago

@KodrAus Thanks so much for doing this! LGTM.