diff --git a/Cargo.toml b/Cargo.toml index f1d08db..a54d2bd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "link-cplusplus" -version = "0.0.0" +version = "1.0.0" authors = ["David Tolnay "] license = "MIT OR Apache-2.0" description = "Link libstdc++ or libc++ automatically or manually" diff --git a/README.md b/README.md index 4a1b111..e5aae1d 100644 --- a/README.md +++ b/README.md @@ -27,18 +27,18 @@ linked, whichever is the platform's default, should use: ```toml [dependencies] -link-cplusplus = "0.0" +link-cplusplus = "1.0" ``` An application that wants a particular one or the other linked should use: ```toml [dependencies] -link-cplusplus = { version = "0.0", features = ["libstdcxx"] } +link-cplusplus = { version = "1.0", features = ["libstdcxx"] } # or -link-cplusplus = { version = "0.0", features = ["libcxx"] } +link-cplusplus = { version = "1.0", features = ["libcxx"] } ``` An application that wants to handle its own more complicated logic for link @@ -46,7 +46,7 @@ flags from its build script can make this crate do nothing by using: ```toml [dependencies] -link-cplusplus = { version = "0.0", features = ["nothing"] } +link-cplusplus = { version = "1.0", features = ["nothing"] } ```
diff --git a/src/lib.rs b/src/lib.rs index a27369e..836ebff 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -22,18 +22,18 @@ //! //! ```toml //! [dependencies] -//! link-cplusplus = "0.0" +//! link-cplusplus = "1.0" //! ``` //! //! An application that wants a particular one or the other linked should use: //! //! ```toml //! [dependencies] -//! link-cplusplus = { version = "0.0", features = ["libstdcxx"] } +//! link-cplusplus = { version = "1.0", features = ["libstdcxx"] } //! //! # or //! -//! link-cplusplus = { version = "0.0", features = ["libcxx"] } +//! link-cplusplus = { version = "1.0", features = ["libcxx"] } //! ``` //! //! An application that wants to handle its own more complicated logic for link @@ -41,5 +41,5 @@ //! //! ```toml //! [dependencies] -//! link-cplusplus = { version = "0.0", features = ["nothing"] } +//! link-cplusplus = { version = "1.0", features = ["nothing"] } //! ```