Bump version.

This commit is contained in:
whitequark 2017-09-22 20:01:40 +00:00
parent 94e3109ab0
commit 73462b9503
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "smoltcp"
version = "0.4.0-pre"
version = "0.4.0"
authors = ["whitequark <whitequark@whitequark.org>"]
description = "A TCP/IP stack designed for bare-metal, real-time systems without a heap."
documentation = "https://docs.rs/smoltcp/"

View File

@ -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`