diff --git a/contrib/ws/Cargo.toml b/contrib/ws/Cargo.toml index 6cacdb46..86848746 100644 --- a/contrib/ws/Cargo.toml +++ b/contrib/ws/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rocket_ws" -version = "0.1.0" +version = "0.1.1" authors = ["Sergio Benitez "] description = "WebSocket support for Rocket." documentation = "https://api.rocket.rs/v0.5/rocket_ws/" diff --git a/contrib/ws/README.md b/contrib/ws/README.md index f0d2a5c4..52f38a7d 100644 --- a/contrib/ws/README.md +++ b/contrib/ws/README.md @@ -16,7 +16,7 @@ This crate provides WebSocket support for Rocket via integration with Rocket's ```toml [dependencies] - ws = { package = "rocket_ws", version = "0.1.0" } + ws = { package = "rocket_ws", version = "0.1.1" } ``` 2. Use it! diff --git a/contrib/ws/src/lib.rs b/contrib/ws/src/lib.rs index 4768a043..d2dcb7b1 100644 --- a/contrib/ws/src/lib.rs +++ b/contrib/ws/src/lib.rs @@ -10,7 +10,7 @@ //! //! ```toml //! [dependencies] -//! ws = { package = "rocket_ws", version = "0.1.0" } +//! ws = { package = "rocket_ws", version = "0.1.1" } //! ``` //! //! Then, use [`WebSocket`] as a request guard in any route and either call