-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2059a62
commit b67bd8b
Showing
23 changed files
with
44 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "rocket_contrib_codegen" | ||
version = "0.4.6" | ||
version = "0.4.7" | ||
authors = ["Sergio Benitez <[email protected]>"] | ||
description = "Procedural macros for the Rocket contrib libraries." | ||
documentation = "https://api.rocket.rs/v0.4/rocket_contrib/" | ||
|
@@ -26,6 +26,6 @@ yansi = "0.5" | |
version_check = "0.9.1" | ||
|
||
[dev-dependencies] | ||
rocket = { version = "0.4.6", path = "../../core/lib" } | ||
rocket_contrib = { version = "0.4.6", path = "../lib", features = ["diesel_sqlite_pool"] } | ||
rocket = { version = "0.4.7", path = "../../core/lib" } | ||
rocket_contrib = { version = "0.4.7", path = "../lib", features = ["diesel_sqlite_pool"] } | ||
trybuild = "1.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "rocket_contrib" | ||
version = "0.4.6" | ||
version = "0.4.7" | ||
authors = ["Sergio Benitez <[email protected]>"] | ||
description = "Community contributed libraries for the Rocket web framework." | ||
documentation = "https://api.rocket.rs/v0.4/rocket_contrib/" | ||
|
@@ -38,8 +38,8 @@ memcache_pool = ["databases", "memcache", "r2d2-memcache"] | |
|
||
[dependencies] | ||
# Global dependencies. | ||
rocket_contrib_codegen = { version = "0.4.6", path = "../codegen", optional = true } | ||
rocket = { version = "0.4.6", path = "../../core/lib/", default-features = false } | ||
rocket_contrib_codegen = { version = "0.4.7", path = "../codegen", optional = true } | ||
rocket = { version = "0.4.7", path = "../../core/lib/", default-features = false } | ||
log = "0.4" | ||
|
||
# Serialization and templating dependencies. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "rocket_codegen" | ||
version = "0.4.6" | ||
version = "0.4.7" | ||
authors = ["Sergio Benitez <[email protected]>"] | ||
description = "Procedural macros for the Rocket web framework." | ||
documentation = "https://api.rocket.rs/v0.4/rocket_codegen/" | ||
|
@@ -17,7 +17,7 @@ proc-macro = true | |
[dependencies] | ||
indexmap = "1.0" | ||
quote = "0.6.1" | ||
rocket_http = { version = "0.4.6", path = "../http/" } | ||
rocket_http = { version = "0.4.7", path = "../http/" } | ||
devise = "0.2" | ||
glob = "0.3" | ||
|
||
|
@@ -26,5 +26,5 @@ yansi = "0.5" | |
version_check = "0.9.1" | ||
|
||
[dev-dependencies] | ||
rocket = { version = "0.4.6", path = "../lib" } | ||
rocket = { version = "0.4.7", path = "../lib" } | ||
trybuild = "1.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "rocket_http" | ||
version = "0.4.6" | ||
version = "0.4.7" | ||
authors = ["Sergio Benitez <[email protected]>"] | ||
description = """ | ||
Types, traits, and parsers for HTTP requests, responses, and headers. | ||
|
@@ -36,4 +36,4 @@ features = ["server"] | |
optional = true | ||
|
||
[dev-dependencies] | ||
rocket = { version = "0.4.6", path = "../lib" } | ||
rocket = { version = "0.4.7", path = "../lib" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "rocket" | ||
version = "0.4.6" | ||
version = "0.4.7" | ||
authors = ["Sergio Benitez <[email protected]>"] | ||
description = """ | ||
Web framework for nightly with a focus on ease-of-use, expressibility, and speed. | ||
|
@@ -24,8 +24,8 @@ sse = [] | |
private-cookies = ["rocket_http/private-cookies"] | ||
|
||
[dependencies] | ||
rocket_codegen = { version = "0.4.6", path = "../codegen" } | ||
rocket_http = { version = "0.4.6", path = "../http" } | ||
rocket_codegen = { version = "0.4.7", path = "../codegen" } | ||
rocket_http = { version = "0.4.7", path = "../http" } | ||
yansi = "0.5" | ||
log = "0.4" | ||
toml = "0.4.7" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
b67bd8b
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The year is wrong on the version date in
CHANGELOG.md
. It says "Version 0.4.7 (Feb 09, 2020)" but it should be 2021.