Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix contrib package versions #2892

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion contrib/db_pools/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ full usage details.

```toml
[dependencies.rocket_db_pools]
version = "0.1.0"
version = "0.2.0"
features = ["sqlx_sqlite"]
```

Expand Down
2 changes: 1 addition & 1 deletion contrib/db_pools/codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rocket_db_pools_codegen"
version = "0.1.0"
version = "0.2.0"
authors = ["Sergio Benitez <[email protected]>", "Jeb Rosen <[email protected]>"]
description = "Procedural macros for rocket_db_pools."
repository = "https://github.com/rwf2/Rocket/tree/master/contrib/db_pools"
Expand Down
4 changes: 2 additions & 2 deletions contrib/db_pools/lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rocket_db_pools"
version = "0.1.0"
version = "0.2.0"
authors = ["Sergio Benitez <[email protected]>", "Jeb Rosen <[email protected]>"]
description = "Rocket async database pooling support"
repository = "https://github.com/rwf2/Rocket/tree/master/contrib/db_pools"
Expand Down Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion contrib/db_pools/lib/src/diesel.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
//! diesel = "2"
//!
//! [dependencies.rocket_db_pools]
//! version = "0.1.0"
//! version = "0.2.0"
//! features = ["diesel_mysql"]
//! ```
//!
Expand Down
4 changes: 2 additions & 2 deletions contrib/db_pools/lib/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
//!
//! ```toml
//! [dependencies.rocket_db_pools]
//! version = "0.1.0"
//! version = "0.2.0"
//! features = ["sqlx_sqlite"]
//! ```
//!
Expand Down Expand Up @@ -165,7 +165,7 @@
//! features = ["macros", "migrate"]
//!
//! [dependencies.rocket_db_pools]
//! version = "0.1.0"
//! version = "0.2.0"
//! features = ["sqlx_sqlite"]
//! ```
//!
Expand Down
2 changes: 1 addition & 1 deletion contrib/dyn_templates/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rocket_dyn_templates"
version = "0.1.0"
version = "0.2.0"
authors = ["Sergio Benitez <[email protected]>"]
description = "Dynamic templating engine integration for Rocket."
documentation = "https://api.rocket.rs/master/rocket_dyn_templates/"
Expand Down
2 changes: 1 addition & 1 deletion contrib/dyn_templates/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
```

Expand Down
2 changes: 1 addition & 1 deletion contrib/dyn_templates/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
//!
//! ```toml
//! [dependencies.rocket_dyn_templates]
//! version = "0.1.0"
//! version = "0.2.0"
//! features = ["handlebars", "tera", "minijinja"]
//! ```
//!
Expand Down
2 changes: 1 addition & 1 deletion contrib/ws/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rocket_ws"
version = "0.1.0"
version = "0.1.1"
authors = ["Sergio Benitez <[email protected]>"]
description = "WebSocket support for Rocket."
documentation = "https://api.rocket.rs/master/rocket_ws/"
Expand Down
2 changes: 1 addition & 1 deletion contrib/ws/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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!
Expand Down
2 changes: 1 addition & 1 deletion contrib/ws/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions docs/guide/07-state.md
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ in three simple steps:

```toml
[dependencies.rocket_db_pools]
version = "0.1.0"
version = "0.2.0"
features = ["sqlx_sqlite"]
```

Expand Down Expand Up @@ -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"]
```

Expand Down