Skip to content

Commit c028d63

Browse files
committed
New version: 0.5.0-rc.1.
New contrib versions: 0.1.0-rc.1.
1 parent b0684c8 commit c028d63

39 files changed

Lines changed: 71 additions & 71 deletions

contrib/dyn_templates/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[package]
22
name = "rocket_dyn_templates"
3-
version = "0.1.0-dev"
3+
version = "0.1.0-rc.1"
44
authors = ["Sergio Benitez <sb@sergio.bz>"]
55
description = "Dynamic templating engine integration for Rocket."
6-
documentation = "https://api.rocket.rs/master/rocket_dyn_templates/"
6+
documentation = "https://api.rocket.rs/v0.5-rc/rocket_dyn_templates/"
77
homepage = "https://rocket.rs"
88
repository = "https://github.com/SergioBenitez/Rocket/contrib/dyn_templates"
99
readme = "README.md"
@@ -23,7 +23,7 @@ notify = "4.0.6"
2323
normpath = "0.3"
2424

2525
[dependencies.rocket]
26-
version = "0.5.0-dev"
26+
version = "0.5.0-rc.1"
2727
path = "../../core/lib"
2828
default-features = false
2929

contrib/dyn_templates/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[crates.io]: https://img.shields.io/crates/v/rocket_dyn_templates.svg
44
[crate]: https://crates.io/crates/rocket_dyn_templates
55
[docs.svg]: https://img.shields.io/badge/web-master-red.svg?style=flat&label=docs&colorB=d33847
6-
[crate docs]: https://api.rocket.rs/master/rocket_dyn_templates
6+
[crate docs]: https://api.rocket.rs/v0.5-rc/rocket_dyn_templates
77
[ci.svg]: https://github.com/SergioBenitez/Rocket/workflows/CI/badge.svg
88
[ci]: https://github.com/SergioBenitez/Rocket/actions
99

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

2323
```toml
2424
[dependencies.rocket_dyn_templates]
25-
version = "0.1.0-dev"
25+
version = "0.1.0-rc.1"
2626
features = ["handlebars", "tera"]
2727
```
2828

contrib/dyn_templates/src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
//!
1313
//! ```toml
1414
//! [dependencies.rocket_dyn_templates]
15-
//! version = "0.1.0-dev"
15+
//! version = "0.1.0-rc.1"
1616
//! features = ["handlebars", "tera"]
1717
//! ```
1818
//!
@@ -67,7 +67,7 @@
6767
//! template directory is configured via the `template_dir` configuration
6868
//! parameter and defaults to `templates/`. The path set in `template_dir` is
6969
//! relative to the Rocket configuration file. See the [configuration
70-
//! chapter](https://rocket.rs/master/guide/configuration) of the guide for more
70+
//! chapter](https://rocket.rs/v0.5-rc/guide/configuration) of the guide for more
7171
//! information on configuration.
7272
//!
7373
//! The corresponding templating engine used for a given template is based on a
@@ -130,7 +130,7 @@
130130
//!
131131
//! [`Serialize`]: serde::Serialize
132132
133-
#![doc(html_root_url = "https://api.rocket.rs/master/rocket_dyn_templates")]
133+
#![doc(html_root_url = "https://api.rocket.rs/v0.5-rc/rocket_dyn_templates")]
134134
#![doc(html_favicon_url = "https://rocket.rs/images/favicon.ico")]
135135
#![doc(html_logo_url = "https://rocket.rs/images/logo-boxed.png")]
136136

contrib/sync_db_pools/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[crates.io]: https://img.shields.io/crates/v/rocket_sync_db_pools.svg
44
[crate]: https://crates.io/crates/rocket_sync_db_pools
55
[docs.svg]: https://img.shields.io/badge/web-master-red.svg?style=flat&label=docs&colorB=d33847
6-
[crate docs]: https://api.rocket.rs/master/rocket_sync_db_pools
6+
[crate docs]: https://api.rocket.rs/v0.5-rc/rocket_sync_db_pools
77
[ci.svg]: https://github.com/SergioBenitez/Rocket/workflows/CI/badge.svg
88
[ci]: https://github.com/SergioBenitez/Rocket/actions
99

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

2020
```toml
2121
[dependencies.rocket_sync_db_pools]
22-
version = "0.1.0-dev"
22+
version = "0.1.0-rc.1"
2323
features = ["diesel_sqlite_pool"]
2424
```
2525

contrib/sync_db_pools/codegen/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rocket_sync_db_pools_codegen"
3-
version = "0.1.0-dev"
3+
version = "0.1.0-rc.1"
44
authors = ["Sergio Benitez <sb@sergio.bz>"]
55
description = "Procedural macros for rocket_sync_db_pools."
66
repository = "https://github.com/SergioBenitez/Rocket/contrib/sync_db_pools"

contrib/sync_db_pools/lib/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rocket_sync_db_pools"
3-
version = "0.1.0-dev"
3+
version = "0.1.0-rc.1"
44
authors = ["Sergio Benitez <sb@sergio.bz>"]
55
description = "Rocket async database pooling support for sync database drivers."
66
repository = "https://github.com/SergioBenitez/Rocket/contrib/sync_db_pools"
@@ -34,11 +34,11 @@ memcache = { version = "0.15", optional = true }
3434
r2d2-memcache = { version = "0.6", optional = true }
3535

3636
[dependencies.rocket_sync_db_pools_codegen]
37-
version = "0.1.0-dev"
37+
version = "0.1.0-rc.1"
3838
path = "../codegen"
3939

4040
[dependencies.rocket]
41-
version = "0.5.0-dev"
41+
version = "0.5.0-rc.1"
4242
path = "../../../core/lib"
4343
default-features = false
4444

contrib/sync_db_pools/lib/src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
//!
3131
//! ```toml
3232
//! [dependencies.rocket_sync_db_pools]
33-
//! version = "0.1.0-dev"
33+
//! version = "0.1.0-rc.1"
3434
//! features = ["diesel_sqlite_pool"]
3535
//! ```
3636
//!
@@ -161,7 +161,7 @@
161161
//! Lastly, databases can be configured via environment variables by specifying
162162
//! the `databases` table as detailed in the [Environment Variables
163163
//! configuration
164-
//! guide](https://rocket.rs/master/guide/configuration/#environment-variables):
164+
//! guide](https://rocket.rs/v0.5-rc/guide/configuration/#environment-variables):
165165
//!
166166
//! ```bash
167167
//! ROCKET_DATABASES='{my_db={url="db.sqlite"}}'
@@ -349,7 +349,7 @@
349349
//! [request guards]: rocket::request::FromRequest
350350
//! [`Poolable`]: crate::Poolable
351351
352-
#![doc(html_root_url = "https://api.rocket.rs/master/rocket_sync_db_pools")]
352+
#![doc(html_root_url = "https://api.rocket.rs/v0.5-rc/rocket_sync_db_pools")]
353353
#![doc(html_favicon_url = "https://rocket.rs/images/favicon.ico")]
354354
#![doc(html_logo_url = "https://rocket.rs/images/logo-boxed.png")]
355355

core/codegen/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[package]
22
name = "rocket_codegen"
3-
version = "0.5.0-dev"
3+
version = "0.5.0-rc.1"
44
authors = ["Sergio Benitez <sb@sergio.bz>"]
55
description = "Procedural macros for the Rocket web framework."
6-
documentation = "https://api.rocket.rs/master/rocket_codegen/"
6+
documentation = "https://api.rocket.rs/v0.5-rc/rocket_codegen/"
77
homepage = "https://rocket.rs"
88
repository = "https://github.com/SergioBenitez/Rocket"
99
readme = "../../README.md"
@@ -20,12 +20,12 @@ quote = "1.0"
2020
syn = { version = "1.0.72", features = ["full", "visit", "visit-mut", "extra-traits"] }
2121
proc-macro2 = "1.0.27"
2222
devise = "0.3"
23-
rocket_http = { version = "0.5.0-dev", path = "../http/" }
23+
rocket_http = { version = "0.5.0-rc.1", path = "../http/" }
2424
unicode-xid = "0.2"
2525
glob = "0.3"
2626

2727
[dev-dependencies]
28-
rocket = { version = "0.5.0-dev", path = "../lib", features = ["json"] }
28+
rocket = { version = "0.5.0-rc.1", path = "../lib", features = ["json"] }
2929
pretty_assertions = "0.7"
3030
version_check = "0.9"
3131
trybuild = "1.0"

core/codegen/src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#![recursion_limit="128"]
22

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

@@ -11,7 +11,7 @@
1111
//! This crate implements the code generation portions of Rocket. This includes
1212
//! custom derives, custom attributes, and procedural macros. The documentation
1313
//! here is purely technical. The code generation facilities are documented
14-
//! thoroughly in the [Rocket programming guide](https://rocket.rs/master/guide).
14+
//! thoroughly in the [Rocket programming guide](https://rocket.rs/v0.5-rc/guide).
1515
//!
1616
//! # Usage
1717
//!
@@ -21,7 +21,7 @@
2121
//!
2222
//! ```toml
2323
//! [dependencies]
24-
//! rocket = "0.5.0-dev"
24+
//! rocket = "0.5.0-rc.1"
2525
//! ```
2626
//!
2727
//! And to import all macros, attributes, and derives via `#[macro_use]` in the

core/http/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "rocket_http"
3-
version = "0.5.0-dev"
3+
version = "0.5.0-rc.1"
44
authors = ["Sergio Benitez <sb@sergio.bz>"]
55
description = """
66
Types, traits, and parsers for HTTP requests, responses, and headers.
77
"""
8-
documentation = "https://api.rocket.rs/master/rocket_http/"
8+
documentation = "https://api.rocket.rs/v0.5-rc/rocket_http/"
99
homepage = "https://rocket.rs"
1010
repository = "https://github.com/SergioBenitez/Rocket"
1111
readme = "../../README.md"
@@ -61,4 +61,4 @@ optional = true
6161
default-features = false
6262

6363
[dev-dependencies]
64-
rocket = { version = "0.5.0-dev", path = "../lib" }
64+
rocket = { version = "0.5.0-rc.1", path = "../lib" }

0 commit comments

Comments
 (0)