diff --git a/Cargo.toml b/Cargo.toml index 31ccc90..bd8d4de 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "ipconfig" -version = "0.3.0" # Remember to also update the html_root_url in lib.rs and the documentation links here and in README.md +version = "0.3.1" # Remember to also update the html_root_url in lib.rs and the documentation links here and in README.md authors = ["Liran Ringel "] description = "Get network adapters information and network configuration for windows." license = "MIT/Apache-2.0" keywords = ["ipconfig", "network", "adapter", "interface", "windows"] repository = "https://github.com/liranringel/ipconfig" homepage = "https://github.com/liranringel/ipconfig" -documentation = "https://docs.rs/ipconfig/0.3/x86_64-pc-windows-msvc/ipconfig/" +documentation = "https://docs.rs/ipconfig/0.3.1/x86_64-pc-windows-msvc/ipconfig/" readme = "README.md" edition = "2018" diff --git a/README.md b/README.md index dd0bdaf..81c2cc1 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ [![Build status](https://ci.appveyor.com/api/projects/status/tiwjo6q4eete0nmh/branch/master?svg=true)](https://ci.appveyor.com/project/liran-ringel/ipconfig/branch/master) [![Crates.io](https://img.shields.io/crates/v/ipconfig.svg)](https://crates.io/crates/ipconfig) -[Documentation](https://docs.rs/ipconfig/0.3/x86_64-pc-windows-msvc/ipconfig/) +[Documentation](https://docs.rs/ipconfig/0.3.1/x86_64-pc-windows-msvc/ipconfig/) ## Examples diff --git a/src/lib.rs b/src/lib.rs index 52d2aa4..d7fcb69 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -18,7 +18,7 @@ //! ``` #![cfg(windows)] -#![doc(html_root_url = "https://docs.rs/ipconfig/0.3/x86_64-pc-windows-msvc/ipconfig/")] +#![doc(html_root_url = "https://docs.rs/ipconfig/0.3.1/x86_64-pc-windows-msvc/ipconfig/")] extern crate widestring; extern crate winapi;