diff --git a/foreign-types-shared/Cargo.toml b/foreign-types-shared/Cargo.toml index 95a0ce7..72a9119 100644 --- a/foreign-types-shared/Cargo.toml +++ b/foreign-types-shared/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "foreign-types-shared" -version = "0.2.0" +version = "0.3.0" authors = ["Steven Fackler "] edition = "2018" license = "MIT/Apache-2.0" diff --git a/foreign-types-shared/src/lib.rs b/foreign-types-shared/src/lib.rs index c3cbf2f..9a83fdc 100644 --- a/foreign-types-shared/src/lib.rs +++ b/foreign-types-shared/src/lib.rs @@ -2,7 +2,7 @@ #![no_std] #![warn(missing_docs)] -#![doc(html_root_url = "https://docs.rs/foreign-types-shared/0.2")] +#![doc(html_root_url = "https://docs.rs/foreign-types-shared/0.3")] use core::cell::UnsafeCell; use core::marker::PhantomData; diff --git a/foreign-types/Cargo.toml b/foreign-types/Cargo.toml index 68fb46f..516c501 100644 --- a/foreign-types/Cargo.toml +++ b/foreign-types/Cargo.toml @@ -14,4 +14,4 @@ std = ["foreign-types-macros/std"] [dependencies] foreign-types-macros = { version = "0.1", path = "../foreign-types-macros" } -foreign-types-shared = { version = "0.2", path = "../foreign-types-shared" } +foreign-types-shared = { version = "0.3", path = "../foreign-types-shared" }