-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Last Minute Changes For The Beta Version
- Loading branch information
1 parent
0ce2236
commit b472d4e
Showing
11 changed files
with
24 additions
and
17 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 = "sailfish-examples" | ||
version = "0.8.3" | ||
version = "0.9.0-beta" | ||
authors = ["Ryohei Machida <[email protected]>"] | ||
edition = "2018" | ||
publish = false | ||
|
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 = "sailfish-compiler" | ||
version = "0.8.3" | ||
version = "0.9.0-beta" | ||
authors = ["Ryohei Machida <[email protected]>"] | ||
description = "Simple, small, and extremely fast template engine for Rust" | ||
homepage = "https://github.com/rust-sailfish/sailfish" | ||
|
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 = "sailfish-macros" | ||
version = "0.8.3" | ||
version = "0.9.0-beta" | ||
authors = ["Ryohei Machida <[email protected]>"] | ||
description = "Simple, small, and extremely fast template engine for Rust" | ||
homepage = "https://github.com/rust-sailfish/sailfish" | ||
|
@@ -30,6 +30,6 @@ proc-macro2 = "1.0.56" | |
|
||
[dependencies.sailfish-compiler] | ||
path = "../sailfish-compiler" | ||
version = "0.8.3" | ||
version = "0.9.0-beta" | ||
default-features = false | ||
features = ["procmacro"] |
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 = "fuzzing-tests" | ||
version = "0.8.3" | ||
version = "0.9.0-beta" | ||
authors = ["Ryohei Machida <[email protected]>"] | ||
edition = "2018" | ||
publish = false | ||
|
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 = "integration-tests" | ||
version = "0.8.3" | ||
version = "0.9.0-beta" | ||
authors = ["Ryohei Machida <[email protected]>"] | ||
edition = "2018" | ||
publish = false | ||
|
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,4 +1,3 @@ | ||
#[macro_use] | ||
extern crate sailfish_macros; | ||
|
||
use integration_tests::assert_string_eq; | ||
|
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 = "sailfish" | ||
version = "0.8.3" | ||
version = "0.9.0-beta" | ||
authors = ["Ryohei Machida <[email protected]>"] | ||
description = "Simple, small, and extremely fast template engine for Rust" | ||
homepage = "https://github.com/rust-sailfish/sailfish" | ||
|
@@ -31,7 +31,7 @@ serde_json = { version = "1.0.95", optional = true } | |
|
||
[dependencies.sailfish-macros] | ||
path = "../sailfish-macros" | ||
version = "0.8.3" | ||
version = "0.9.0-beta" | ||
default-features = false | ||
optional = true | ||
|
||
|