Browse Source

Remove version from readme/docstring

Remove the explicit `version = "0.1"` so that we don't have to update it
when releasing new versions.
Nicholas Bishop 1 month ago
parent
commit
b1bc759db2
2 changed files with 4 additions and 6 deletions
  1. 2 3
      README.md
  2. 2 3
      src/lib.rs

+ 2 - 3
README.md

@@ -35,9 +35,8 @@ pre-written adapters for [`fmt::Write`][output::fmt_write] (like a
 
 
 ### 🔬 Small
 ### 🔬 Small
 
 
-This crate is `no_std` compatible (`printf-compat = { version = "0.1",
-default-features = false }` in your Cargo.toml). The main machinery doesn't
-require the use of [`core::fmt`], and it can't panic.
+This crate is `no_std` compatible (with `default-features = false`).
+The main machinery doesn't require the use of [`core::fmt`], and it can't panic.
 
 
 ### 🔒 Safe (as can be)
 ### 🔒 Safe (as can be)
 
 

+ 2 - 3
src/lib.rs

@@ -30,9 +30,8 @@
 //!
 //!
 //! ## 🔬 Small
 //! ## 🔬 Small
 //!
 //!
-//! This crate is `no_std` compatible (`printf-compat = { version = "0.1",
-//! default-features = false }` in your Cargo.toml). The main machinery doesn't
-//! require the use of [`core::fmt`], and it can't panic.
+//! This crate is `no_std` compatible (with `default-features = false`).
+//! The main machinery doesn't require the use of [`core::fmt`], and it can't panic.
 //!
 //!
 //! ## 🔒 Safe (as can be)
 //! ## 🔒 Safe (as can be)
 //!
 //!