Skip to content

Commit

Permalink
wip: update crate versions
Browse files Browse the repository at this point in the history
  • Loading branch information
SergioBenitez committed Nov 3, 2023
1 parent 808b10d commit 7af1784
Show file tree
Hide file tree
Showing 53 changed files with 277 additions and 277 deletions.
342 changes: 171 additions & 171 deletions CHANGELOG.md

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions contrib/db_pools/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[crates.io]: https://img.shields.io/crates/v/rocket_db_pools.svg
[crate]: https://crates.io/crates/rocket_db_pools
[docs.svg]: https://img.shields.io/badge/web-master-red.svg?style=flat&label=docs&colorB=d33847
[crate docs]: https://api.rocket.rs/v0.5-rc/rocket_db_pools
[crate docs]: https://api.rocket.rs/v0.5/rocket_db_pools
[ci.svg]: https://github.com/SergioBenitez/Rocket/workflows/CI/badge.svg
[ci]: https://github.com/SergioBenitez/Rocket/actions

Expand All @@ -17,7 +17,7 @@ full usage details.

```toml
[dependencies.rocket_db_pools]
version = "=0.1.0-rc.4"
version = "0.1.0"
features = ["sqlx_sqlite"]
```

Expand Down Expand Up @@ -60,8 +60,8 @@ full usage details.
}
```

[database driver features]: https://api.rocket.rs/v0.5-rc/rocket_db_pools/index.html#supported-drivers
[`Pool`]: https://api.rocket.rs/v0.5-rc/rocket_db_pools/index.html#supported-drivers
[Configure]: https://api.rocket.rs/v0.5-rc/rocket_db_pools/index.html#configuration
[Derive `Database`]: https://api.rocket.rs/v0.5-rc/rocket_db_pools/derive.Database.html
[`Connection<Type>`]: https://api.rocket.rs/v0.5-rc/rocket_db_pools/struct.Connection.html
[database driver features]: https://api.rocket.rs/v0.5/rocket_db_pools/index.html#supported-drivers
[`Pool`]: https://api.rocket.rs/v0.5/rocket_db_pools/index.html#supported-drivers
[Configure]: https://api.rocket.rs/v0.5/rocket_db_pools/index.html#configuration
[Derive `Database`]: https://api.rocket.rs/v0.5/rocket_db_pools/derive.Database.html
[`Connection<Type>`]: https://api.rocket.rs/v0.5/rocket_db_pools/struct.Connection.html
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-rc.4"
version = "0.1.0"
authors = ["Sergio Benitez <[email protected]>", "Jeb Rosen <[email protected]>"]
description = "Procedural macros for rocket_db_pools."
repository = "https://github.com/SergioBenitez/Rocket/contrib/db_pools"
Expand Down
6 changes: 3 additions & 3 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-rc.4"
version = "0.1.0"
authors = ["Sergio Benitez <[email protected]>", "Jeb Rosen <[email protected]>"]
description = "Rocket async database pooling support"
repository = "https://github.com/SergioBenitez/Rocket/contrib/db_pools"
Expand Down Expand Up @@ -29,12 +29,12 @@ diesel_mysql = ["diesel-async/mysql", "diesel-async/deadpool", "diesel", "deadpo

[dependencies.rocket]
path = "../../../core/lib"
version = "=0.5.0-rc.4"
version = "0.5.0"
default-features = false

[dependencies.rocket_db_pools_codegen]
path = "../codegen"
version = "=0.1.0-rc.4"
version = "0.1.0"

[dependencies.deadpool]
version = "0.9"
Expand Down
4 changes: 2 additions & 2 deletions contrib/db_pools/lib/src/diesel.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
//!
//! ```toml
//! [dependencies]
//! rocket = "=0.5.0-rc.4"
//! rocket = "0.5.0"
//! diesel = "2"
//!
//! [dependencies.rocket_db_pools]
//! version = "=0.1.0-rc.4"
//! version = "0.1.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-rc.4"
//! version = "0.1.0"
//! features = ["sqlx_sqlite"]
//! ```
//!
Expand Down Expand Up @@ -165,7 +165,7 @@
//! features = ["macros", "migrate"]
//!
//! [dependencies.rocket_db_pools]
//! version = "=0.1.0-rc.4"
//! version = "0.1.0"
//! features = ["sqlx_sqlite"]
//! ```
//!
Expand Down
6 changes: 3 additions & 3 deletions contrib/dyn_templates/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "rocket_dyn_templates"
version = "0.1.0-rc.4"
version = "0.1.0"
authors = ["Sergio Benitez <[email protected]>"]
description = "Dynamic templating engine integration for Rocket."
documentation = "https://api.rocket.rs/v0.5-rc/rocket_dyn_templates/"
documentation = "https://api.rocket.rs/v0.5/rocket_dyn_templates/"
homepage = "https://rocket.rs"
repository = "https://github.com/SergioBenitez/Rocket/tree/master/contrib/dyn_templates"
readme = "README.md"
Expand All @@ -22,7 +22,7 @@ notify = "6"
normpath = "1"

[dependencies.rocket]
version = "=0.5.0-rc.4"
version = "0.5.0"
path = "../../core/lib"
default-features = false

Expand Down
4 changes: 2 additions & 2 deletions contrib/dyn_templates/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[crates.io]: https://img.shields.io/crates/v/rocket_dyn_templates.svg
[crate]: https://crates.io/crates/rocket_dyn_templates
[docs.svg]: https://img.shields.io/badge/web-master-red.svg?style=flat&label=docs&colorB=d33847
[crate docs]: https://api.rocket.rs/v0.5-rc/rocket_dyn_templates
[crate docs]: https://api.rocket.rs/v0.5/rocket_dyn_templates
[ci.svg]: https://github.com/SergioBenitez/Rocket/workflows/CI/badge.svg
[ci]: https://github.com/SergioBenitez/Rocket/actions

Expand All @@ -22,7 +22,7 @@ supports [Handlebars] and [Tera].

```toml
[dependencies.rocket_dyn_templates]
version = "=0.1.0-rc.4"
version = "0.1.0"
features = ["handlebars", "tera"]
```

Expand Down
6 changes: 3 additions & 3 deletions 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-rc.4"
//! version = "0.1.0"
//! features = ["handlebars", "tera"]
//! ```
//!
Expand Down Expand Up @@ -66,7 +66,7 @@
//! template directory is configured via the `template_dir` configuration
//! parameter and defaults to `templates/`. The path set in `template_dir` is
//! relative to the Rocket configuration file. See the [configuration
//! chapter](https://rocket.rs/v0.5-rc/guide/configuration) of the guide for more
//! chapter](https://rocket.rs/v0.5/guide/configuration) of the guide for more
//! information on configuration.
//!
//! The corresponding templating engine used for a given template is based on a
Expand Down Expand Up @@ -132,7 +132,7 @@
//! the templates directory since the previous request. In release builds,
//! template reloading is disabled to improve performance and cannot be enabled.
#![doc(html_root_url = "https://api.rocket.rs/v0.5-rc/rocket_dyn_templates")]
#![doc(html_root_url = "https://api.rocket.rs/v0.5/rocket_dyn_templates")]
#![doc(html_favicon_url = "https://rocket.rs/images/favicon.ico")]
#![doc(html_logo_url = "https://rocket.rs/images/logo-boxed.png")]

Expand Down
4 changes: 2 additions & 2 deletions contrib/sync_db_pools/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[crates.io]: https://img.shields.io/crates/v/rocket_sync_db_pools.svg
[crate]: https://crates.io/crates/rocket_sync_db_pools
[docs.svg]: https://img.shields.io/badge/web-master-red.svg?style=flat&label=docs&colorB=d33847
[crate docs]: https://api.rocket.rs/v0.5-rc/rocket_sync_db_pools
[crate docs]: https://api.rocket.rs/v0.5/rocket_sync_db_pools
[ci.svg]: https://github.com/SergioBenitez/Rocket/workflows/CI/badge.svg
[ci]: https://github.com/SergioBenitez/Rocket/actions

Expand All @@ -19,7 +19,7 @@ First, enable the feature corresponding to your database type:

```toml
[dependencies.rocket_sync_db_pools]
version = "=0.1.0-rc.4"
version = "0.1.0"
features = ["diesel_sqlite_pool"]
```

Expand Down
2 changes: 1 addition & 1 deletion contrib/sync_db_pools/codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rocket_sync_db_pools_codegen"
version = "0.1.0-rc.4"
version = "0.1.0"
authors = ["Sergio Benitez <[email protected]>"]
description = "Procedural macros for rocket_sync_db_pools."
repository = "https://github.com/SergioBenitez/Rocket/contrib/sync_db_pools"
Expand Down
8 changes: 4 additions & 4 deletions contrib/sync_db_pools/lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "rocket_sync_db_pools"
version = "0.1.0-rc.4"
version = "0.1.0"
authors = ["Sergio Benitez <[email protected]>"]
description = "Rocket async database pooling support for sync database drivers."
repository = "https://github.com/SergioBenitez/Rocket/tree/v0.5-rc/contrib/sync_db_pools"
repository = "https://github.com/SergioBenitez/Rocket/tree/v0.5/contrib/sync_db_pools"
readme = "../README.md"
keywords = ["rocket", "framework", "database", "pools"]
license = "MIT OR Apache-2.0"
Expand Down Expand Up @@ -35,11 +35,11 @@ memcache = { version = "0.15", optional = true }
r2d2-memcache = { version = "0.6", optional = true }

[dependencies.rocket_sync_db_pools_codegen]
version = "=0.1.0-rc.4"
version = "0.1.0"
path = "../codegen"

[dependencies.rocket]
version = "=0.5.0-rc.4"
version = "0.5.0"
path = "../../../core/lib"
default-features = false

Expand Down
6 changes: 3 additions & 3 deletions contrib/sync_db_pools/lib/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
//!
//! ```toml
//! [dependencies.rocket_sync_db_pools]
//! version = "=0.1.0-rc.4"
//! version = "0.1.0"
//! features = ["diesel_sqlite_pool"]
//! ```
//!
Expand Down Expand Up @@ -166,7 +166,7 @@
//! Lastly, databases can be configured via environment variables by specifying
//! the `databases` table as detailed in the [Environment Variables
//! configuration
//! guide](https://rocket.rs/v0.5-rc/guide/configuration/#environment-variables):
//! guide](https://rocket.rs/v0.5/guide/configuration/#environment-variables):
//!
//! ```bash
//! ROCKET_DATABASES='{my_db={url="db.sqlite"}}'
Expand Down Expand Up @@ -349,7 +349,7 @@
//! [request guards]: rocket::request::FromRequest
//! [`Poolable`]: crate::Poolable
#![doc(html_root_url = "https://api.rocket.rs/v0.5-rc/rocket_sync_db_pools")]
#![doc(html_root_url = "https://api.rocket.rs/v0.5/rocket_sync_db_pools")]
#![doc(html_favicon_url = "https://rocket.rs/images/favicon.ico")]
#![doc(html_logo_url = "https://rocket.rs/images/logo-boxed.png")]
#![cfg_attr(nightly, feature(doc_cfg))]
Expand Down
6 changes: 3 additions & 3 deletions contrib/ws/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "rocket_ws"
version = "0.1.0-rc.4"
version = "0.1.0"
authors = ["Sergio Benitez <[email protected]>"]
description = "WebSocket support for Rocket."
documentation = "https://api.rocket.rs/v0.5-rc/rocket_ws/"
documentation = "https://api.rocket.rs/v0.5/rocket_ws/"
homepage = "https://rocket.rs"
repository = "https://github.com/SergioBenitez/Rocket/tree/master/contrib/ws"
readme = "README.md"
Expand All @@ -20,7 +20,7 @@ tungstenite = ["tokio-tungstenite"]
tokio-tungstenite = { version = "0.20", optional = true }

[dependencies.rocket]
version = "=0.5.0-rc.4"
version = "0.5.0"
path = "../../core/lib"
default-features = false

Expand Down
4 changes: 2 additions & 2 deletions contrib/ws/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[crates.io]: https://img.shields.io/crates/v/rocket_ws.svg
[crate]: https://crates.io/crates/rocket_ws
[docs.svg]: https://img.shields.io/badge/web-master-red.svg?style=flat&label=docs&colorB=d33847
[crate docs]: https://api.rocket.rs/v0.5-rc/rocket_ws
[crate docs]: https://api.rocket.rs/v0.5/rocket_ws
[ci.svg]: https://github.com/SergioBenitez/Rocket/workflows/CI/badge.svg
[ci]: https://github.com/SergioBenitez/Rocket/actions

Expand All @@ -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-rc.4" }
ws = { package = "rocket_ws", version = "0.1.0" }
```

2. Use it!
Expand Down
4 changes: 2 additions & 2 deletions 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-rc.4" }
//! ws = { package = "rocket_ws", version = "0.1.0" }
//! ```
//!
//! Then, use [`WebSocket`] as a request guard in any route and either call
Expand Down Expand Up @@ -70,7 +70,7 @@
//! }
//! ```
#![doc(html_root_url = "https://api.rocket.rs/v0.5-rc/rocket_ws")]
#![doc(html_root_url = "https://api.rocket.rs/v0.5/rocket_ws")]
#![doc(html_favicon_url = "https://rocket.rs/images/favicon.ico")]
#![doc(html_logo_url = "https://rocket.rs/images/logo-boxed.png")]

Expand Down
6 changes: 3 additions & 3 deletions core/codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "rocket_codegen"
version = "0.5.0-rc.4"
version = "0.5.0"
authors = ["Sergio Benitez <[email protected]>"]
description = "Procedural macros for the Rocket web framework."
documentation = "https://api.rocket.rs/v0.5-rc/rocket_codegen/"
documentation = "https://api.rocket.rs/v0.5/rocket_codegen/"
homepage = "https://rocket.rs"
repository = "https://github.com/SergioBenitez/Rocket"
readme = "../../README.md"
Expand All @@ -21,7 +21,7 @@ quote = "1.0"
syn = { version = "2.0", features = ["full", "visit", "visit-mut", "extra-traits"] }
proc-macro2 = "1.0.27"
devise = "0.4"
rocket_http = { version = "=0.5.0-rc.4", path = "../http/" }
rocket_http = { version = "0.5.0", path = "../http/" }
unicode-xid = "0.2"
version_check = "0.9"
glob = "0.3"
Expand Down
6 changes: 3 additions & 3 deletions core/codegen/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#![recursion_limit="128"]

#![doc(html_root_url = "https://api.rocket.rs/v0.5-rc")]
#![doc(html_root_url = "https://api.rocket.rs/v0.5")]
#![doc(html_favicon_url = "https://rocket.rs/images/favicon.ico")]
#![doc(html_logo_url = "https://rocket.rs/images/logo-boxed.png")]

Expand All @@ -11,7 +11,7 @@
//! This crate implements the code generation portions of Rocket. This includes
//! custom derives, custom attributes, and procedural macros. The documentation
//! here is purely technical. The code generation facilities are documented
//! thoroughly in the [Rocket programming guide](https://rocket.rs/v0.5-rc/guide).
//! thoroughly in the [Rocket programming guide](https://rocket.rs/v0.5/guide).
//!
//! # Usage
//!
Expand All @@ -21,7 +21,7 @@
//!
//! ```toml
//! [dependencies]
//! rocket = "=0.5.0-rc.4"
//! rocket = "0.5.0"
//! ```
//!
//! And to import all macros, attributes, and derives via `#[macro_use]` in the
Expand Down
4 changes: 2 additions & 2 deletions core/http/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "rocket_http"
version = "0.5.0-rc.4"
version = "0.5.0"
authors = ["Sergio Benitez <[email protected]>"]
description = """
Types, traits, and parsers for HTTP requests, responses, and headers.
"""
documentation = "https://api.rocket.rs/v0.5-rc/rocket_http/"
documentation = "https://api.rocket.rs/v0.5/rocket_http/"
homepage = "https://rocket.rs"
repository = "https://github.com/SergioBenitez/Rocket"
readme = "../../README.md"
Expand Down
8 changes: 4 additions & 4 deletions core/lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "rocket"
version = "0.5.0-rc.4"
version = "0.5.0"
authors = ["Sergio Benitez <[email protected]>"]
description = """
Web framework with a focus on usability, security, extensibility, and speed.
"""
documentation = "https://api.rocket.rs/v0.5-rc/rocket/"
documentation = "https://api.rocket.rs/v0.5/rocket/"
homepage = "https://rocket.rs"
repository = "https://github.com/SergioBenitez/Rocket"
readme = "../../README.md"
Expand Down Expand Up @@ -61,11 +61,11 @@ tokio-stream = { version = "0.1.6", features = ["signal", "time"] }
state = "0.6"

[dependencies.rocket_codegen]
version = "=0.5.0-rc.4"
version = "0.5.0"
path = "../codegen"

[dependencies.rocket_http]
version = "=0.5.0-rc.4"
version = "0.5.0"
path = "../http"
features = ["serde"]

Expand Down
2 changes: 1 addition & 1 deletion core/lib/src/config/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ use crate::config::SecretKey;
/// See the [module level docs](crate::config) as well as the [configuration
/// guide] for further details.
///
/// [configuration guide]: https://rocket.rs/v0.5-rc/guide/configuration/
/// [configuration guide]: https://rocket.rs/v0.5/guide/configuration/
///
/// # Defaults
///
Expand Down
Loading

0 comments on commit 7af1784

Please sign in to comment.