From 9d9351b670087430b14f0059f4ba2893810529ff Mon Sep 17 00:00:00 2001 From: vthg2themax Date: Fri, 28 Jul 2023 10:20:51 -0400 Subject: [PATCH] Update Version Numbers Now --- Cargo.lock | 8 ++++---- README.md | 2 +- docs/en/docs/installation.md | 2 +- examples/Cargo.toml | 2 +- sailfish-compiler/Cargo.toml | 2 +- sailfish-macros/Cargo.toml | 4 ++-- sailfish-tests/fuzzing-tests/Cargo.toml | 2 +- sailfish-tests/integration-tests/Cargo.toml | 2 +- sailfish/Cargo.toml | 4 ++-- 9 files changed, 14 insertions(+), 14 deletions(-) mode change 100644 => 100755 Cargo.lock mode change 100644 => 100755 README.md mode change 100644 => 100755 docs/en/docs/installation.md mode change 100644 => 100755 examples/Cargo.toml mode change 100644 => 100755 sailfish-compiler/Cargo.toml mode change 100644 => 100755 sailfish-macros/Cargo.toml mode change 100644 => 100755 sailfish-tests/fuzzing-tests/Cargo.toml mode change 100644 => 100755 sailfish-tests/integration-tests/Cargo.toml mode change 100644 => 100755 sailfish/Cargo.toml diff --git a/Cargo.lock b/Cargo.lock old mode 100644 new mode 100755 index 81b4764..1573c73 --- a/Cargo.lock +++ b/Cargo.lock @@ -90,7 +90,7 @@ dependencies = [ [[package]] name = "integration-tests" -version = "0.7.0" +version = "0.8.0" dependencies = [ "pretty_assertions", "sailfish", @@ -186,7 +186,7 @@ checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041" [[package]] name = "sailfish" -version = "0.7.0" +version = "0.8.0" dependencies = [ "itoap", "ryu", @@ -198,7 +198,7 @@ dependencies = [ [[package]] name = "sailfish-compiler" -version = "0.7.0" +version = "0.8.0" dependencies = [ "filetime", "home", @@ -213,7 +213,7 @@ dependencies = [ [[package]] name = "sailfish-macros" -version = "0.7.0" +version = "0.8.0" dependencies = [ "proc-macro2", "sailfish-compiler", diff --git a/README.md b/README.md old mode 100644 new mode 100755 index b043ef2..72fb980 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ Dependencies: ```toml [dependencies] -sailfish = "0.7.0" +sailfish = "0.8.0" ``` Template file (templates/hello.stpl): diff --git a/docs/en/docs/installation.md b/docs/en/docs/installation.md old mode 100644 new mode 100755 index 47ded6f..19f825d --- a/docs/en/docs/installation.md +++ b/docs/en/docs/installation.md @@ -4,7 +4,7 @@ In order to use sailfish templates, you have add two dependencies in your `Cargo ``` toml [dependencies] -sailfish = "0.7.0" +sailfish = "0.8.0" ``` ## Feature Flags diff --git a/examples/Cargo.toml b/examples/Cargo.toml old mode 100644 new mode 100755 index 16a654c..f67d099 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sailfish-examples" -version = "0.7.0" +version = "0.8.0" authors = ["Ryohei Machida "] edition = "2018" publish = false diff --git a/sailfish-compiler/Cargo.toml b/sailfish-compiler/Cargo.toml old mode 100644 new mode 100755 index 07baeeb..c94532b --- a/sailfish-compiler/Cargo.toml +++ b/sailfish-compiler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sailfish-compiler" -version = "0.7.0" +version = "0.8.0" authors = ["Ryohei Machida "] description = "Simple, small, and extremely fast template engine for Rust" homepage = "https://github.com/rust-sailfish/sailfish" diff --git a/sailfish-macros/Cargo.toml b/sailfish-macros/Cargo.toml old mode 100644 new mode 100755 index 48ec66c..b759222 --- a/sailfish-macros/Cargo.toml +++ b/sailfish-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sailfish-macros" -version = "0.7.0" +version = "0.8.0" authors = ["Ryohei Machida "] 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.7.0" +version = "0.8.0" default-features = false features = ["procmacro"] diff --git a/sailfish-tests/fuzzing-tests/Cargo.toml b/sailfish-tests/fuzzing-tests/Cargo.toml old mode 100644 new mode 100755 index c2fd7ef..afd7deb --- a/sailfish-tests/fuzzing-tests/Cargo.toml +++ b/sailfish-tests/fuzzing-tests/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fuzzing-tests" -version = "0.7.0" +version = "0.8.0" authors = ["Ryohei Machida "] edition = "2018" publish = false diff --git a/sailfish-tests/integration-tests/Cargo.toml b/sailfish-tests/integration-tests/Cargo.toml old mode 100644 new mode 100755 index 3df1392..1b27e41 --- a/sailfish-tests/integration-tests/Cargo.toml +++ b/sailfish-tests/integration-tests/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "integration-tests" -version = "0.7.0" +version = "0.8.0" authors = ["Ryohei Machida "] edition = "2018" publish = false diff --git a/sailfish/Cargo.toml b/sailfish/Cargo.toml old mode 100644 new mode 100755 index 1092021..c568a23 --- a/sailfish/Cargo.toml +++ b/sailfish/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sailfish" -version = "0.7.0" +version = "0.8.0" authors = ["Ryohei Machida "] 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.7.0" +version = "0.8.0" default-features = false optional = true