Skip to content

Commit b67bd8b

Browse files
committed
New version: 0.4.7.
1 parent 2059a62 commit b67bd8b

File tree

23 files changed

+44
-34
lines changed

23 files changed

+44
-34
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# Version 0.4.7 (Feb 09, 2020)
2+
3+
## Core
4+
5+
* [[#1534], [`2059a6`]] Fixed a low-severity, minimal impact soundness issue
6+
in `uri::Formatter`.
7+
8+
[#1534]: https://github.com/SergioBenitez/Rocket/issues/1534
9+
[`2059a6`]: https://github.com/SergioBenitez/Rocket/commit/2059a6
10+
111
# Version 0.4.6 (Nov 09, 2020)
212

313
## Core

contrib/codegen/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_contrib_codegen"
3-
version = "0.4.6"
3+
version = "0.4.7"
44
authors = ["Sergio Benitez <[email protected]>"]
55
description = "Procedural macros for the Rocket contrib libraries."
66
documentation = "https://api.rocket.rs/v0.4/rocket_contrib/"
@@ -26,6 +26,6 @@ yansi = "0.5"
2626
version_check = "0.9.1"
2727

2828
[dev-dependencies]
29-
rocket = { version = "0.4.6", path = "../../core/lib" }
30-
rocket_contrib = { version = "0.4.6", path = "../lib", features = ["diesel_sqlite_pool"] }
29+
rocket = { version = "0.4.7", path = "../../core/lib" }
30+
rocket_contrib = { version = "0.4.7", path = "../lib", features = ["diesel_sqlite_pool"] }
3131
trybuild = "1.0"

contrib/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_contrib"
3-
version = "0.4.6"
3+
version = "0.4.7"
44
authors = ["Sergio Benitez <[email protected]>"]
55
description = "Community contributed libraries for the Rocket web framework."
66
documentation = "https://api.rocket.rs/v0.4/rocket_contrib/"
@@ -38,8 +38,8 @@ memcache_pool = ["databases", "memcache", "r2d2-memcache"]
3838

3939
[dependencies]
4040
# Global dependencies.
41-
rocket_contrib_codegen = { version = "0.4.6", path = "../codegen", optional = true }
42-
rocket = { version = "0.4.6", path = "../../core/lib/", default-features = false }
41+
rocket_contrib_codegen = { version = "0.4.7", path = "../codegen", optional = true }
42+
rocket = { version = "0.4.7", path = "../../core/lib/", default-features = false }
4343
log = "0.4"
4444

4545
# Serialization and templating dependencies.

contrib/lib/src/databases.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
//!
3333
//! ```toml
3434
//! [dependencies.rocket_contrib]
35-
//! version = "0.4.6"
35+
//! version = "0.4.7"
3636
//! default-features = false
3737
//! features = ["diesel_sqlite_pool"]
3838
//! ```

contrib/lib/src/helmet/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
//!
1717
//! ```toml
1818
//! [dependencies.rocket_contrib]
19-
//! version = "0.4.6"
19+
//! version = "0.4.7"
2020
//! default-features = false
2121
//! features = ["helmet"]
2222
//! ```

contrib/lib/src/json.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
//!
1010
//! ```toml
1111
//! [dependencies.rocket_contrib]
12-
//! version = "0.4.6"
12+
//! version = "0.4.7"
1313
//! default-features = false
1414
//! features = ["json"]
1515
//! ```

contrib/lib/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
//!
3434
//! ```toml
3535
//! [dependencies.rocket_contrib]
36-
//! version = "0.4.6"
36+
//! version = "0.4.7"
3737
//! default-features = false
3838
//! features = ["json"]
3939
//! ```

contrib/lib/src/msgpack.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
//!
1010
//! ```toml
1111
//! [dependencies.rocket_contrib]
12-
//! version = "0.4.6"
12+
//! version = "0.4.7"
1313
//! default-features = false
1414
//! features = ["msgpack"]
1515
//! ```

contrib/lib/src/serve.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
//!
1010
//! ```toml
1111
//! [dependencies.rocket_contrib]
12-
//! version = "0.4.6"
12+
//! version = "0.4.7"
1313
//! default-features = false
1414
//! features = ["serve"]
1515
//! ```

contrib/lib/src/templates/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
//!
1010
//! ```toml
1111
//! [dependencies.rocket_contrib]
12-
//! version = "0.4.6"
12+
//! version = "0.4.7"
1313
//! default-features = false
1414
//! features = ["handlebars_templates", "tera_templates"]
1515
//! ```
@@ -158,7 +158,7 @@ const DEFAULT_TEMPLATE_DIR: &str = "templates";
158158
///
159159
/// ```toml
160160
/// [dependencies.rocket_contrib]
161-
/// version = "0.4.6"
161+
/// version = "0.4.7"
162162
/// default-features = false
163163
/// features = ["handlebars_templates", "tera_templates"]
164164
/// ```

0 commit comments

Comments
 (0)