From 19ed1f38d81ae6268b282f18da9ae456ecd7bf95 Mon Sep 17 00:00:00 2001 From: whitequark Date: Fri, 22 Sep 2017 20:01:40 +0000 Subject: [PATCH] Bump version. --- Cargo.toml | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 811f8c76..b65e9fe0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "smoltcp" -version = "0.4.0-pre" +version = "0.4.0" authors = ["whitequark "] description = "A TCP/IP stack designed for bare-metal, real-time systems without a heap." documentation = "https://docs.rs/smoltcp/" diff --git a/README.md b/README.md index a2f3cccf..48dca739 100644 --- a/README.md +++ b/README.md @@ -77,7 +77,7 @@ To use the _smoltcp_ library in your project, add the following to `Cargo.toml`: ```toml [dependencies] -smoltcp = "0.3" +smoltcp = "0.4" ``` The default configuration assumes a hosted environment, for ease of evaluation. @@ -85,7 +85,7 @@ You probably want to disable default features and configure them one by one: ```toml [dependencies] -smoltcp = { version = "0.3", default-features = false, features = ["..."] } +smoltcp = { version = "0.4", default-features = false, features = ["log"] } ``` ### Feature `std`