From 24ca5e8783f5aea1569df64679ed6dccff168366 Mon Sep 17 00:00:00 2001 From: Sergio Benitez Date: Wed, 1 Nov 2023 19:18:11 -0500 Subject: [PATCH] New version: 0.5.0-rc.4. New contrib versions: 0.1.0-rc.4. --- contrib/db_pools/README.md | 2 +- contrib/db_pools/codegen/Cargo.toml | 2 +- contrib/db_pools/lib/Cargo.toml | 6 ++--- contrib/db_pools/lib/src/diesel.rs | 4 +-- contrib/db_pools/lib/src/lib.rs | 4 +-- contrib/dyn_templates/Cargo.toml | 4 +-- contrib/dyn_templates/README.md | 2 +- contrib/dyn_templates/src/lib.rs | 2 +- contrib/sync_db_pools/README.md | 2 +- contrib/sync_db_pools/codegen/Cargo.toml | 2 +- contrib/sync_db_pools/lib/Cargo.toml | 6 ++--- contrib/sync_db_pools/lib/src/lib.rs | 2 +- contrib/ws/Cargo.toml | 4 +-- contrib/ws/README.md | 2 +- contrib/ws/src/lib.rs | 2 +- core/codegen/Cargo.toml | 4 +-- core/codegen/src/lib.rs | 2 +- core/http/Cargo.toml | 2 +- core/lib/Cargo.toml | 6 ++--- core/lib/src/lib.rs | 6 ++--- core/lib/src/serde/json.rs | 2 +- core/lib/src/serde/msgpack.rs | 2 +- core/lib/src/serde/uuid.rs | 2 +- site/guide/01-upgrading.md | 6 ++--- site/guide/10-pastebin-tutorial.md | 2 +- site/guide/12-faq.md | 2 +- site/guide/2-getting-started.md | 2 +- site/guide/4-requests.md | 4 +-- site/guide/6-state.md | 4 +-- site/guide/9-configuration.md | 4 +-- site/index.toml | 4 +-- site/news/2023-11-01-version-0.5-rc.4.md | 31 ++++++++++++++++++++++++ site/news/index.toml | 12 +++++++++ site/tests/Cargo.toml | 2 +- 34 files changed, 94 insertions(+), 51 deletions(-) create mode 100644 site/news/2023-11-01-version-0.5-rc.4.md diff --git a/contrib/db_pools/README.md b/contrib/db_pools/README.md index 77f64633..9ec29d18 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-rc.3" + version = "=0.1.0-rc.4" features = ["sqlx_sqlite"] ``` diff --git a/contrib/db_pools/codegen/Cargo.toml b/contrib/db_pools/codegen/Cargo.toml index 21ad699e..3d23598b 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-rc.3" +version = "0.1.0-rc.4" authors = ["Sergio Benitez ", "Jeb Rosen "] description = "Procedural macros for rocket_db_pools." repository = "https://github.com/SergioBenitez/Rocket/contrib/db_pools" diff --git a/contrib/db_pools/lib/Cargo.toml b/contrib/db_pools/lib/Cargo.toml index 540e5348..850a2390 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-rc.3" +version = "0.1.0-rc.4" authors = ["Sergio Benitez ", "Jeb Rosen "] description = "Rocket async database pooling support" repository = "https://github.com/SergioBenitez/Rocket/contrib/db_pools" @@ -29,12 +29,12 @@ diesel_mysql = ["diesel-async/mysql", "diesel-async/deadpool", "diesel", "deadpo [dependencies.rocket] path = "../../../core/lib" -version = "=0.5.0-rc.3" +version = "=0.5.0-rc.4" default-features = false [dependencies.rocket_db_pools_codegen] path = "../codegen" -version = "=0.1.0-rc.3" +version = "=0.1.0-rc.4" [dependencies.deadpool] version = "0.9" diff --git a/contrib/db_pools/lib/src/diesel.rs b/contrib/db_pools/lib/src/diesel.rs index 89c606be..65974d3a 100644 --- a/contrib/db_pools/lib/src/diesel.rs +++ b/contrib/db_pools/lib/src/diesel.rs @@ -8,11 +8,11 @@ //! //! ```toml //! [dependencies] -//! rocket = "=0.5.0-rc.3" +//! rocket = "=0.5.0-rc.4" //! diesel = "2" //! //! [dependencies.rocket_db_pools] -//! version = "=0.1.0-rc.3" +//! version = "=0.1.0-rc.4" //! features = ["diesel_mysql"] //! ``` //! diff --git a/contrib/db_pools/lib/src/lib.rs b/contrib/db_pools/lib/src/lib.rs index c00375c8..05259e16 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-rc.3" +//! version = "=0.1.0-rc.4" //! features = ["sqlx_sqlite"] //! ``` //! @@ -165,7 +165,7 @@ //! features = ["macros", "migrate"] //! //! [dependencies.rocket_db_pools] -//! version = "=0.1.0-rc.3" +//! version = "=0.1.0-rc.4" //! features = ["sqlx_sqlite"] //! ``` //! diff --git a/contrib/dyn_templates/Cargo.toml b/contrib/dyn_templates/Cargo.toml index d4386d2b..1fe40ef6 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-rc.3" +version = "0.1.0-rc.4" authors = ["Sergio Benitez "] description = "Dynamic templating engine integration for Rocket." documentation = "https://api.rocket.rs/v0.5-rc/rocket_dyn_templates/" @@ -22,7 +22,7 @@ notify = "6" normpath = "1" [dependencies.rocket] -version = "=0.5.0-rc.3" +version = "=0.5.0-rc.4" path = "../../core/lib" default-features = false diff --git a/contrib/dyn_templates/README.md b/contrib/dyn_templates/README.md index 4bfd30cd..810f4846 100644 --- a/contrib/dyn_templates/README.md +++ b/contrib/dyn_templates/README.md @@ -22,7 +22,7 @@ supports [Handlebars] and [Tera]. ```toml [dependencies.rocket_dyn_templates] - version = "=0.1.0-rc.3" + version = "=0.1.0-rc.4" features = ["handlebars", "tera"] ``` diff --git a/contrib/dyn_templates/src/lib.rs b/contrib/dyn_templates/src/lib.rs index 8ae1040a..7202a3a6 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-rc.3" +//! version = "=0.1.0-rc.4" //! features = ["handlebars", "tera"] //! ``` //! diff --git a/contrib/sync_db_pools/README.md b/contrib/sync_db_pools/README.md index 1e376eeb..9cfa24d0 100644 --- a/contrib/sync_db_pools/README.md +++ b/contrib/sync_db_pools/README.md @@ -19,7 +19,7 @@ First, enable the feature corresponding to your database type: ```toml [dependencies.rocket_sync_db_pools] -version = "=0.1.0-rc.3" +version = "=0.1.0-rc.4" features = ["diesel_sqlite_pool"] ``` diff --git a/contrib/sync_db_pools/codegen/Cargo.toml b/contrib/sync_db_pools/codegen/Cargo.toml index cee6a484..c3319e9f 100644 --- a/contrib/sync_db_pools/codegen/Cargo.toml +++ b/contrib/sync_db_pools/codegen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rocket_sync_db_pools_codegen" -version = "0.1.0-rc.3" +version = "0.1.0-rc.4" authors = ["Sergio Benitez "] description = "Procedural macros for rocket_sync_db_pools." repository = "https://github.com/SergioBenitez/Rocket/contrib/sync_db_pools" diff --git a/contrib/sync_db_pools/lib/Cargo.toml b/contrib/sync_db_pools/lib/Cargo.toml index 8a2903f1..3f65e3c2 100644 --- a/contrib/sync_db_pools/lib/Cargo.toml +++ b/contrib/sync_db_pools/lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rocket_sync_db_pools" -version = "0.1.0-rc.3" +version = "0.1.0-rc.4" authors = ["Sergio Benitez "] description = "Rocket async database pooling support for sync database drivers." repository = "https://github.com/SergioBenitez/Rocket/tree/v0.5-rc/contrib/sync_db_pools" @@ -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.3" +version = "=0.1.0-rc.4" path = "../codegen" [dependencies.rocket] -version = "=0.5.0-rc.3" +version = "=0.5.0-rc.4" path = "../../../core/lib" default-features = false diff --git a/contrib/sync_db_pools/lib/src/lib.rs b/contrib/sync_db_pools/lib/src/lib.rs index 731b2230..e390d725 100644 --- a/contrib/sync_db_pools/lib/src/lib.rs +++ b/contrib/sync_db_pools/lib/src/lib.rs @@ -30,7 +30,7 @@ //! //! ```toml //! [dependencies.rocket_sync_db_pools] -//! version = "=0.1.0-rc.3" +//! version = "=0.1.0-rc.4" //! features = ["diesel_sqlite_pool"] //! ``` //! diff --git a/contrib/ws/Cargo.toml b/contrib/ws/Cargo.toml index 10068cca..d4ae211f 100644 --- a/contrib/ws/Cargo.toml +++ b/contrib/ws/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rocket_ws" -version = "0.1.0-rc.3" +version = "0.1.0-rc.4" authors = ["Sergio Benitez "] description = "WebSocket support for Rocket." documentation = "https://api.rocket.rs/v0.5-rc/rocket_ws/" @@ -20,7 +20,7 @@ tungstenite = ["tokio-tungstenite"] tokio-tungstenite = { version = "0.20", optional = true } [dependencies.rocket] -version = "=0.5.0-rc.3" +version = "=0.5.0-rc.4" path = "../../core/lib" default-features = false diff --git a/contrib/ws/README.md b/contrib/ws/README.md index 825bdab6..d7e94725 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-rc.3" } + ws = { package = "rocket_ws", version ="=0.1.0-rc.4" } ``` 2. Use it! diff --git a/contrib/ws/src/lib.rs b/contrib/ws/src/lib.rs index 4b424a76..a8c2d895 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-rc.3" } +//! ws = { package = "rocket_ws", version ="=0.1.0-rc.4" } //! ``` //! //! Then, use [`WebSocket`] as a request guard in any route and either call diff --git a/core/codegen/Cargo.toml b/core/codegen/Cargo.toml index bda61846..c0d4f0b1 100644 --- a/core/codegen/Cargo.toml +++ b/core/codegen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rocket_codegen" -version = "0.5.0-rc.3" +version = "0.5.0-rc.4" authors = ["Sergio Benitez "] description = "Procedural macros for the Rocket web framework." documentation = "https://api.rocket.rs/v0.5-rc/rocket_codegen/" @@ -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.3", path = "../http/" } +rocket_http = { version = "=0.5.0-rc.4", path = "../http/" } unicode-xid = "0.2" version_check = "0.9" glob = "0.3" diff --git a/core/codegen/src/lib.rs b/core/codegen/src/lib.rs index abcf3872..4f9a6b2f 100644 --- a/core/codegen/src/lib.rs +++ b/core/codegen/src/lib.rs @@ -21,7 +21,7 @@ //! //! ```toml //! [dependencies] -//! rocket = "=0.5.0-rc.3" +//! rocket = "=0.5.0-rc.4" //! ``` //! //! And to import all macros, attributes, and derives via `#[macro_use]` in the diff --git a/core/http/Cargo.toml b/core/http/Cargo.toml index 6e3020ff..8994e704 100644 --- a/core/http/Cargo.toml +++ b/core/http/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rocket_http" -version = "0.5.0-rc.3" +version = "0.5.0-rc.4" authors = ["Sergio Benitez "] description = """ Types, traits, and parsers for HTTP requests, responses, and headers. diff --git a/core/lib/Cargo.toml b/core/lib/Cargo.toml index 092e08ff..c29d1d96 100644 --- a/core/lib/Cargo.toml +++ b/core/lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rocket" -version = "0.5.0-rc.3" +version = "0.5.0-rc.4" authors = ["Sergio Benitez "] description = """ Web framework with a focus on usability, security, extensibility, and speed. @@ -61,11 +61,11 @@ tokio-stream = { version = "0.1.6", features = ["signal", "time"] } state = "0.6" [dependencies.rocket_codegen] -version = "=0.5.0-rc.3" +version = "=0.5.0-rc.4" path = "../codegen" [dependencies.rocket_http] -version = "=0.5.0-rc.3" +version = "=0.5.0-rc.4" path = "../http" features = ["serde"] diff --git a/core/lib/src/lib.rs b/core/lib/src/lib.rs index f3a11ddf..8ac0f994 100644 --- a/core/lib/src/lib.rs +++ b/core/lib/src/lib.rs @@ -29,7 +29,7 @@ //! //! ```toml //! [dependencies] -//! rocket = "=0.5.0-rc.3" +//! rocket = "=0.5.0-rc.4" //! ``` //! //! Note that development versions, tagged with `-dev`, are not published @@ -73,14 +73,14 @@ //! //! ```toml //! [dependencies] -//! rocket = { version = "=0.5.0-rc.3", features = ["secrets", "tls", "json"] } +//! rocket = { version = "=0.5.0-rc.4", features = ["secrets", "tls", "json"] } //! ``` //! //! Conversely, HTTP/2 can be disabled: //! //! ```toml //! [dependencies] -//! rocket = { version = "=0.5.0-rc.3", default-features = false } +//! rocket = { version = "=0.5.0-rc.4", default-features = false } //! ``` //! //! [JSON (de)serialization]: crate::serde::json diff --git a/core/lib/src/serde/json.rs b/core/lib/src/serde/json.rs index a96f629e..3a22f822 100644 --- a/core/lib/src/serde/json.rs +++ b/core/lib/src/serde/json.rs @@ -9,7 +9,7 @@ //! //! ```toml //! [dependencies.rocket] -//! version = "=0.5.0-rc.3" +//! version = "=0.5.0-rc.4" //! features = ["json"] //! ``` //! diff --git a/core/lib/src/serde/msgpack.rs b/core/lib/src/serde/msgpack.rs index 3b92f060..ff2381dc 100644 --- a/core/lib/src/serde/msgpack.rs +++ b/core/lib/src/serde/msgpack.rs @@ -9,7 +9,7 @@ //! //! ```toml //! [dependencies.rocket] -//! version = "=0.5.0-rc.3" +//! version = "=0.5.0-rc.4" //! features = ["msgpack"] //! ``` //! diff --git a/core/lib/src/serde/uuid.rs b/core/lib/src/serde/uuid.rs index 8c377168..03c5f781 100644 --- a/core/lib/src/serde/uuid.rs +++ b/core/lib/src/serde/uuid.rs @@ -7,7 +7,7 @@ //! //! ```toml //! [dependencies.rocket] -//! version = "=0.5.0-rc.3" +//! version = "=0.5.0-rc.4" //! features = ["uuid"] //! ``` //! diff --git a/site/guide/01-upgrading.md b/site/guide/01-upgrading.md index 80dd3ab1..65f23013 100644 --- a/site/guide/01-upgrading.md +++ b/site/guide/01-upgrading.md @@ -38,7 +38,7 @@ private cookies, you _must_ enable the `secrets` feature in `Cargo.toml`: ```toml [dependencies] -rocket = { version = "=0.5.0-rc.3", features = ["secrets"] } +rocket = { version = "=0.5.0-rc.4", features = ["secrets"] } ``` ### Contrib Deprecation @@ -59,8 +59,8 @@ to `Cargo.toml`: [dependencies] - rocket = "0.4" - rocket_contrib = { version = "0.4", features = ["json"], default-features = false } -+ rocket = { version = "=0.5.0-rc.3", features = ["json"] } -+ rocket_dyn_templates = { version = "=0.1.0-rc.3", features = ["tera"] } ++ rocket = { version = "=0.5.0-rc.4", features = ["json"] } ++ rocket_dyn_templates = { version = "=0.1.0-rc.4", features = ["tera"] } ``` ! note: `rocket_dyn_templates` (and co.) _does not_ follow in version lock-step diff --git a/site/guide/10-pastebin-tutorial.md b/site/guide/10-pastebin-tutorial.md index 6cdda784..e0a6d222 100644 --- a/site/guide/10-pastebin-tutorial.md +++ b/site/guide/10-pastebin-tutorial.md @@ -52,7 +52,7 @@ Then add the usual Rocket dependencies to the `Cargo.toml` file: ```toml [dependencies] -rocket = "=0.5.0-rc.3" +rocket = "=0.5.0-rc.4" ``` And finally, create a skeleton Rocket application to work off of in diff --git a/site/guide/12-faq.md b/site/guide/12-faq.md index 1356ef31..a11078fd 100644 --- a/site/guide/12-faq.md +++ b/site/guide/12-faq.md @@ -646,7 +646,7 @@ is to depend on a `contrib` library from git while also depending on a `crates.io` version of Rocket or vice-versa: ```toml -rocket = "=0.5.0-rc.3" +rocket = "=0.5.0-rc.4" rocket_db_pools = { git = "https://github.com/SergioBenitez/Rocket.git" } ``` diff --git a/site/guide/2-getting-started.md b/site/guide/2-getting-started.md index 368c2b56..74d601a4 100644 --- a/site/guide/2-getting-started.md +++ b/site/guide/2-getting-started.md @@ -43,7 +43,7 @@ Now, add Rocket as a dependency in your `Cargo.toml`: ```toml [dependencies] -rocket = "=0.5.0-rc.3" +rocket = "=0.5.0-rc.4" ``` ! warning: Development versions must be _git_ dependencies. diff --git a/site/guide/4-requests.md b/site/guide/4-requests.md index 56b927ce..c0c0d6e5 100644 --- a/site/guide/4-requests.md +++ b/site/guide/4-requests.md @@ -606,7 +606,7 @@ feature: ```toml ## in Cargo.toml -rocket = { version = "=0.5.0-rc.3", features = ["secrets"] } +rocket = { version = "=0.5.0-rc.4", features = ["secrets"] } ``` The API for retrieving, adding, and removing private cookies is identical except @@ -784,7 +784,7 @@ complete example. feature can be enabled in the `Cargo.toml`: ` - rocket = { version = "=0.5.0-rc.3", features = ["json"] } + rocket = { version = "=0.5.0-rc.4", features = ["json"] } ` ### Temporary Files diff --git a/site/guide/6-state.md b/site/guide/6-state.md index b845d347..ac974ffd 100644 --- a/site/guide/6-state.md +++ b/site/guide/6-state.md @@ -231,7 +231,7 @@ in three simple steps: ```toml [dependencies.rocket_db_pools] - version = "=0.1.0-rc.3" + version = "=0.1.0-rc.4" features = ["sqlx_sqlite"] ``` @@ -299,7 +299,7 @@ default-features = false features = ["macros", "migrate"] [dependencies.rocket_db_pools] -version = "=0.1.0-rc.3" +version = "=0.1.0-rc.4" features = ["sqlx_sqlite"] ``` diff --git a/site/guide/9-configuration.md b/site/guide/9-configuration.md index c9f71301..19a0d8d6 100644 --- a/site/guide/9-configuration.md +++ b/site/guide/9-configuration.md @@ -237,7 +237,7 @@ Security). To enable TLS support: ```toml,ignore [dependencies] - rocket = { version = "=0.5.0-rc.3", features = ["tls"] } + rocket = { version = "=0.5.0-rc.4", features = ["tls"] } ``` 2. Configure a TLS certificate chain and private key via the `tls.key` and @@ -302,7 +302,7 @@ enabled and support configured via the `tls.mutual` config parameter: ```toml,ignore [dependencies] - rocket = { version = "=0.5.0-rc.3", features = ["mtls"] } + rocket = { version = "=0.5.0-rc.4", features = ["mtls"] } ``` This implicitly enables the `tls` feature. diff --git a/site/index.toml b/site/index.toml index 64ad7b19..87bad8ce 100644 --- a/site/index.toml +++ b/site/index.toml @@ -3,8 +3,8 @@ ############################################################################### [release] -version = "0.5.0-rc.3" -date = "Mar 23, 2023" +version = "0.5.0-rc.4" +date = "Nov 1, 2023" ############################################################################### # Top features: displayed in the header under the introductory text. diff --git a/site/news/2023-11-01-version-0.5-rc.4.md b/site/news/2023-11-01-version-0.5-rc.4.md new file mode 100644 index 00000000..31a3b750 --- /dev/null +++ b/site/news/2023-11-01-version-0.5-rc.4.md @@ -0,0 +1,31 @@ +# Rocket's 4th v0.5 Release Candidate + + + +Rocket `0.5.0-rc.4`, a release candidate for Rocket v0.5, is now available. + +This release builds on the previous release candidate and brings further +features, improvements, and fixes to Rocket. As before, this is an opportunity +to discover issues with Rocket v0.5 and its documentation before its general +release. We encourage all users to migrate their applications to the fourth +release candidate and report any issues to the [GitHub issue tracker]. Please +see the new [migration guide] for complete details on how to upgrade from Rocket +v0.4. For changes since Rocket v0.5.0-rc.3, please see the [CHANGELOG]. + +[GitHub issue tracker]: https://github.com/SergioBenitez/Rocket/issues +[GitHub discussions]: https://github.com/SergioBenitez/Rocket/discussions +[migration guide]: ../../guide/upgrading +[CHANGELOG]: https://github.com/SergioBenitez/Rocket/blob/v0.5.0-rc.4/CHANGELOG.md + +## About Rocket + +Rocket is a web framework for Rust with a focus on usability, security, +extensibility, and speed. Rocket makes it simple to write fast, secure web +applications without sacrificing usability. + +Not already using Rocket? Join the tens of thousands of users and hundreds of +companies happily using Rocket today! Rocket's extensive documentation makes it +easy: get started by [reading through the guide](../../guide) or learning more +from [the overview](../../overview). diff --git a/site/news/index.toml b/site/news/index.toml index cd137e2a..75f140ab 100644 --- a/site/news/index.toml +++ b/site/news/index.toml @@ -1,3 +1,15 @@ +[[articles]] +title = """ + Rocket's 4th v0.5 Release Candidate +""" +slug = "2023-11-01-version-0.5-rc.4" +author = "Sergio Benitez" +author_url = "https://sergio.bz" +date = "November 01, 2023" +snippet = """ +Rocket `0.5.0-rc.4`, a release candidate for Rocket v0.5, is now available. +""" + [[articles]] title = """ Rocket's 3rd v0.5 Release Candidate diff --git a/site/tests/Cargo.toml b/site/tests/Cargo.toml index c6861023..561c9a54 100644 --- a/site/tests/Cargo.toml +++ b/site/tests/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rocket_guide_tests" -version = "0.5.0-rc.3" +version = "0.5.0-rc.4" workspace = "../../" edition = "2021" publish = false