diff --git a/contrib/db_pools/README.md b/contrib/db_pools/README.md index aa6a0e5e92..71d4880561 100644 --- a/contrib/db_pools/README.md +++ b/contrib/db_pools/README.md @@ -17,7 +17,7 @@ full usage details. ```toml [dependencies.rocket_db_pools] - version = "0.1.0" + version = "0.2.0" features = ["sqlx_sqlite"] ``` diff --git a/contrib/db_pools/codegen/Cargo.toml b/contrib/db_pools/codegen/Cargo.toml index aade9350a0..9d273291cb 100644 --- a/contrib/db_pools/codegen/Cargo.toml +++ b/contrib/db_pools/codegen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rocket_db_pools_codegen" -version = "0.1.0" +version = "0.2.0" authors = ["Sergio Benitez ", "Jeb Rosen "] description = "Procedural macros for rocket_db_pools." repository = "https://github.com/rwf2/Rocket/tree/master/contrib/db_pools" diff --git a/contrib/db_pools/lib/Cargo.toml b/contrib/db_pools/lib/Cargo.toml index 2654139914..96cd247e12 100644 --- a/contrib/db_pools/lib/Cargo.toml +++ b/contrib/db_pools/lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rocket_db_pools" -version = "0.1.0" +version = "0.2.0" authors = ["Sergio Benitez ", "Jeb Rosen "] description = "Rocket async database pooling support" repository = "https://github.com/rwf2/Rocket/tree/master/contrib/db_pools" @@ -37,7 +37,7 @@ default-features = false [dependencies.rocket_db_pools_codegen] path = "../codegen" -version = "0.1.0" +version = "0.2.0" [dependencies.deadpool] version = "0.12.1" diff --git a/contrib/db_pools/lib/src/diesel.rs b/contrib/db_pools/lib/src/diesel.rs index 9d4d935d9d..d5454770f8 100644 --- a/contrib/db_pools/lib/src/diesel.rs +++ b/contrib/db_pools/lib/src/diesel.rs @@ -12,7 +12,7 @@ //! diesel = "2" //! //! [dependencies.rocket_db_pools] -//! version = "0.1.0" +//! version = "0.2.0" //! features = ["diesel_mysql"] //! ``` //! diff --git a/contrib/db_pools/lib/src/lib.rs b/contrib/db_pools/lib/src/lib.rs index 0ec23bb470..5bf16602e9 100644 --- a/contrib/db_pools/lib/src/lib.rs +++ b/contrib/db_pools/lib/src/lib.rs @@ -7,7 +7,7 @@ //! //! ```toml //! [dependencies.rocket_db_pools] -//! version = "0.1.0" +//! version = "0.2.0" //! features = ["sqlx_sqlite"] //! ``` //! @@ -165,7 +165,7 @@ //! features = ["macros", "migrate"] //! //! [dependencies.rocket_db_pools] -//! version = "0.1.0" +//! version = "0.2.0" //! features = ["sqlx_sqlite"] //! ``` //! diff --git a/contrib/dyn_templates/Cargo.toml b/contrib/dyn_templates/Cargo.toml index f34bcd1b55..014ca36659 100644 --- a/contrib/dyn_templates/Cargo.toml +++ b/contrib/dyn_templates/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rocket_dyn_templates" -version = "0.1.0" +version = "0.2.0" authors = ["Sergio Benitez "] description = "Dynamic templating engine integration for Rocket." documentation = "https://api.rocket.rs/master/rocket_dyn_templates/" diff --git a/contrib/dyn_templates/README.md b/contrib/dyn_templates/README.md index 29143724a9..a6d89bc084 100644 --- a/contrib/dyn_templates/README.md +++ b/contrib/dyn_templates/README.md @@ -22,7 +22,7 @@ and automatically reloads templates when compiled in debug mode. It supports [Ha ```toml [dependencies.rocket_dyn_templates] - version = "0.1.0" + version = "0.2.0" features = ["handlebars", "tera", "minijinja"] ``` diff --git a/contrib/dyn_templates/src/lib.rs b/contrib/dyn_templates/src/lib.rs index c2446aa4b8..bc93e484fd 100644 --- a/contrib/dyn_templates/src/lib.rs +++ b/contrib/dyn_templates/src/lib.rs @@ -12,7 +12,7 @@ //! //! ```toml //! [dependencies.rocket_dyn_templates] -//! version = "0.1.0" +//! version = "0.2.0" //! features = ["handlebars", "tera", "minijinja"] //! ``` //! diff --git a/contrib/ws/Cargo.toml b/contrib/ws/Cargo.toml index 079b36322d..e54be8d0f1 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/master/rocket_ws/" diff --git a/contrib/ws/README.md b/contrib/ws/README.md index a0c37b7705..c62d788b2e 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 e3d63ef0af..db895a8bb5 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 diff --git a/docs/guide/07-state.md b/docs/guide/07-state.md index bbea7fddbe..6e36eae965 100644 --- a/docs/guide/07-state.md +++ b/docs/guide/07-state.md @@ -236,7 +236,7 @@ in three simple steps: ```toml [dependencies.rocket_db_pools] - version = "0.1.0" + version = "0.2.0" features = ["sqlx_sqlite"] ``` @@ -304,7 +304,7 @@ default-features = false features = ["macros", "migrate"] [dependencies.rocket_db_pools] -version = "0.1.0" +version = "0.2.0" features = ["sqlx_sqlite"] ```