Delete redundant semver component
diff --git a/Cargo.toml b/Cargo.toml
index 7b57e79..7dd97e8 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -13,7 +13,7 @@
 rust-version = "1.68"
 
 [build-dependencies]
-cc = "1.0"
+cc = "1"
 
 [features]
 default = [] # automatic
diff --git a/README.md b/README.md
index 7743b4f..d45f24d 100644
--- a/README.md
+++ b/README.md
@@ -29,18 +29,18 @@
 
 ```toml
 [dependencies]
-link-cplusplus = "1.0"
+link-cplusplus = "1"
 ```
 
 An application that wants a particular one or the other linked should use:
 
 ```toml
 [dependencies]
-link-cplusplus = { version = "1.0", features = ["libstdc++"] }
+link-cplusplus = { version = "1", features = ["libstdc++"] }
 
 # or
 
-link-cplusplus = { version = "1.0", features = ["libc++"] }
+link-cplusplus = { version = "1", features = ["libc++"] }
 ```
 
 An application that wants to handle its own more complicated logic for link
@@ -48,7 +48,7 @@
 
 ```toml
 [dependencies]
-link-cplusplus = { version = "1.0", features = ["nothing"] }
+link-cplusplus = { version = "1", features = ["nothing"] }
 ```
 
 Lastly, make sure to add an explicit `extern crate` dependency to your crate
diff --git a/src/lib.rs b/src/lib.rs
index 7864d59..ca52af8 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -31,18 +31,18 @@
 //!
 //! ```toml
 //! [dependencies]
-//! link-cplusplus = "1.0"
+//! link-cplusplus = "1"
 //! ```
 //!
 //! An application that wants a particular one or the other linked should use:
 //!
 //! ```toml
 //! [dependencies]
-//! link-cplusplus = { version = "1.0", features = ["libstdc++"] }
+//! link-cplusplus = { version = "1", features = ["libstdc++"] }
 //!
 //! # or
 //!
-//! link-cplusplus = { version = "1.0", features = ["libc++"] }
+//! link-cplusplus = { version = "1", features = ["libc++"] }
 //! ```
 //!
 //! An application that wants to handle its own more complicated logic for link
@@ -50,7 +50,7 @@
 //!
 //! ```toml
 //! [dependencies]
-//! link-cplusplus = { version = "1.0", features = ["nothing"] }
+//! link-cplusplus = { version = "1", features = ["nothing"] }
 //! ```
 //!
 //! Lastly, make sure to add an explicit `extern crate` dependency to your crate