From 2e392994830084874b2695bf7953f245752d7d44 Mon Sep 17 00:00:00 2001 From: vthg2themax Date: Sun, 22 Oct 2023 05:01:13 -0400 Subject: [PATCH] bump version in preparation for upload to crates.io --- 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(-) diff --git a/Cargo.lock b/Cargo.lock index cd864bd..f651f38 100755 --- a/Cargo.lock +++ b/Cargo.lock @@ -80,7 +80,7 @@ dependencies = [ [[package]] name = "integration-tests" -version = "0.8.1" +version = "0.8.3" dependencies = [ "pretty_assertions", "sailfish", @@ -165,7 +165,7 @@ checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" [[package]] name = "sailfish" -version = "0.8.1" +version = "0.8.3" dependencies = [ "itoap", "ryu", @@ -177,7 +177,7 @@ dependencies = [ [[package]] name = "sailfish-compiler" -version = "0.8.1" +version = "0.8.3" dependencies = [ "filetime", "home", @@ -192,7 +192,7 @@ dependencies = [ [[package]] name = "sailfish-macros" -version = "0.8.1" +version = "0.8.3" dependencies = [ "proc-macro2", "sailfish-compiler", diff --git a/README.md b/README.md index 34a06f7..8fb3885 100755 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ Dependencies: ```toml [dependencies] -sailfish = "0.8.1" +sailfish = "0.8.3" ``` Template file (templates/hello.stpl): diff --git a/docs/en/docs/installation.md b/docs/en/docs/installation.md index 54f3c9b..f37f9c5 100755 --- 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.8.1" +sailfish = "0.8.3" ``` ## Feature Flags diff --git a/examples/Cargo.toml b/examples/Cargo.toml index e7ada18..8da3d24 100755 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sailfish-examples" -version = "0.8.1" +version = "0.8.3" authors = ["Ryohei Machida "] edition = "2018" publish = false diff --git a/sailfish-compiler/Cargo.toml b/sailfish-compiler/Cargo.toml index a231e3f..3a89559 100755 --- a/sailfish-compiler/Cargo.toml +++ b/sailfish-compiler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sailfish-compiler" -version = "0.8.1" +version = "0.8.3" 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 index b20ae78..39e0aca 100755 --- a/sailfish-macros/Cargo.toml +++ b/sailfish-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sailfish-macros" -version = "0.8.1" +version = "0.8.3" 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.8.1" +version = "0.8.3" default-features = false features = ["procmacro"] diff --git a/sailfish-tests/fuzzing-tests/Cargo.toml b/sailfish-tests/fuzzing-tests/Cargo.toml index c280355..4505d25 100755 --- a/sailfish-tests/fuzzing-tests/Cargo.toml +++ b/sailfish-tests/fuzzing-tests/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fuzzing-tests" -version = "0.8.1" +version = "0.8.3" authors = ["Ryohei Machida "] edition = "2018" publish = false diff --git a/sailfish-tests/integration-tests/Cargo.toml b/sailfish-tests/integration-tests/Cargo.toml index 421f7de..4c8b7a7 100755 --- a/sailfish-tests/integration-tests/Cargo.toml +++ b/sailfish-tests/integration-tests/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "integration-tests" -version = "0.8.1" +version = "0.8.3" authors = ["Ryohei Machida "] edition = "2018" publish = false diff --git a/sailfish/Cargo.toml b/sailfish/Cargo.toml index e7626ec..c977b80 100755 --- a/sailfish/Cargo.toml +++ b/sailfish/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sailfish" -version = "0.8.1" +version = "0.8.3" 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.8.1" +version = "0.8.3" default-features = false optional = true