diff --git a/CHANGELOG-pre-1.0.0.md b/CHANGELOG-pre-1.0.0.md index fb9ae47adc..189a6bd535 100644 --- a/CHANGELOG-pre-1.0.0.md +++ b/CHANGELOG-pre-1.0.0.md @@ -109,10 +109,8 @@ and this project adheres to ### Changed - all: Drop support for Rust versions lower than 1.54.0. -- cosmwasm-std: The `Debug` implementation of `Binary` now produces a hex string - instead of a list of bytes ([#1199]). -- cosmwasm-std: Pin uint version to 0.9.1 in order to maintain a reasonably low - MSRV. +- cosmwasm-std: The `Debug` implementation of `Binary` now produces a hex string instead of a list of bytes ([#1199]). +- cosmwasm-std: Pin uint version to 0.9.1 in order to maintain a reasonably low MSRV. - cosmwasm-std: Add missing `Isqrt` export ([#1214]). [#1199]: https://github.com/CosmWasm/cosmwasm/issues/1199 diff --git a/README.md b/README.md index 089f64cc30..190d441e01 100644 --- a/README.md +++ b/README.md @@ -254,7 +254,9 @@ on our [YouTube channel](https://www.youtube.com/@CosmWasm), or ## Minimum Supported Rust Version (MSRV) -See [Minimum Supported Rust Version (MSRV)](./docs/MSRV.md). +See [Minimum Supported Rust Version (MSRV)] on Wiki. + +[Minimum Supported Rust Version (MSRV)]: https://github.com/CosmWasm/cosmwasm/wiki/Minimum-Supported-Rust-Version-(MSRV) ## API entry points diff --git a/docs/MSRV.md b/docs/MSRV.md deleted file mode 100644 index ca8292dd35..0000000000 --- a/docs/MSRV.md +++ /dev/null @@ -1,11 +0,0 @@ -# Minimum Supported Rust Version (MSRV) - -We try to keep the range of supported Rust compiler versions as wide as possible -to avoid unnecessary inconvenience for contract developers. However, we give up -all strong MSRV guarantees as the Rust ecosystem currently makes it impossible -to do so. See e.g. - -- https://github.com/rust-lang/api-guidelines/issues/252 -- https://github.com/CosmWasm/cosmwasm/issues/1244 -- https://github.com/wasmerio/wasmer/issues/2819 -- https://github.com/CosmWasm/cosmwasm/issues/1204