diff --git a/CHANGELOG.md b/CHANGELOG.md index ef76dbd..62d22f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# Version 1.3.0 + +- Remove the dependency on the `once_cell` crate to restore the MSRV. (#241) + # Version 1.2.5 - Bump version for docs.rs to pick up latest dependencies. diff --git a/Cargo.toml b/Cargo.toml index e8868cf..41a5e70 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,15 +3,13 @@ name = "smol" # When publishing a new version: # - Update CHANGELOG.md # - Create "v1.x.y" git tag -version = "1.2.5" +version = "1.3.0" authors = ["Stjepan Glavina "] edition = "2018" rust-version = "1.47" description = "A small and fast async runtime" license = "Apache-2.0 OR MIT" repository = "https://github.com/smol-rs/smol" -homepage = "https://github.com/smol-rs/smol" -documentation = "https://docs.rs/smol" keywords = ["async", "await", "future", "io", "networking"] categories = ["asynchronous", "concurrency", "network-programming"] exclude = ["/.*"]