diff --git a/README.md b/README.md index 1650955..5d1edff 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ This crate is `no_std` compatible. To use it without `std`: ```toml [dependencies] -downcast-rs = { version = "1.2.0", default-features = false } +downcast-rs = { version = "1.2.1", default-features = false } ``` To make a trait downcastable, make it extend either `downcast::Downcast` or diff --git a/src/lib.rs b/src/lib.rs index 0659e18..b7e3411 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -26,7 +26,7 @@ //! //! ```toml //! [dependencies] -//! downcast-rs = { version = "1.2.0", default-features = false } +//! downcast-rs = { version = "1.2.1", default-features = false } //! ``` //! //! To make a trait downcastable, make it extend either `downcast::Downcast` or