From 733e1a6c63dea8cbc7019181954fbf454857f1a7 Mon Sep 17 00:00:00 2001 From: Kogia-sima Date: Sat, 13 Jun 2020 23:18:07 +0900 Subject: [PATCH] Bump version (0.0.4 => 0.0.5) --- Cargo.lock | 20 ++++++++++---------- README.md | 4 ++-- benches/Cargo.lock | 8 ++++---- benches/Cargo.toml | 2 +- docs/en/docs/installation.md | 4 ++-- examples/Cargo.toml | 2 +- integration-tests/Cargo.toml | 2 +- sailfish-compiler/Cargo.toml | 2 +- sailfish-macros/Cargo.toml | 4 ++-- sailfish/Cargo.toml | 2 +- 10 files changed, 25 insertions(+), 25 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index bad40cb..bfde255 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -431,12 +431,12 @@ dependencies = [ [[package]] name = "examples" -version = "0.0.4" +version = "0.0.5" dependencies = [ "actix-rt 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "actix-web 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sailfish 0.0.4", - "sailfish-macros 0.0.4", + "sailfish 0.0.5", + "sailfish-macros 0.0.5", ] [[package]] @@ -671,11 +671,11 @@ dependencies = [ [[package]] name = "integration-tests" -version = "0.0.4" +version = "0.0.5" dependencies = [ "pretty_assertions 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sailfish 0.0.4", - "sailfish-macros 0.0.4", + "sailfish 0.0.5", + "sailfish-macros 0.0.5", "trybuild 1.0.28 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1050,14 +1050,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "sailfish" -version = "0.0.4" +version = "0.0.5" dependencies = [ "ryu 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "sailfish-compiler" -version = "0.0.4" +version = "0.0.5" dependencies = [ "memchr 2.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "pretty_assertions 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1068,10 +1068,10 @@ dependencies = [ [[package]] name = "sailfish-macros" -version = "0.0.4" +version = "0.0.5" dependencies = [ "proc-macro2 1.0.18 (registry+https://github.com/rust-lang/crates.io-index)", - "sailfish-compiler 0.0.4", + "sailfish-compiler 0.0.5", ] [[package]] diff --git a/README.md b/README.md index 77562c4..781c1bc 100644 --- a/README.md +++ b/README.md @@ -29,8 +29,8 @@ Dependencies: ```toml [dependencies] -sailfish = "0.0.4" -sailfish-macros = "0.0.4" +sailfish = "0.0.5" +sailfish-macros = "0.0.5" ``` Template file (templates/hello.stpl): diff --git a/benches/Cargo.lock b/benches/Cargo.lock index ef5ad7c..39b942f 100644 --- a/benches/Cargo.lock +++ b/benches/Cargo.lock @@ -159,7 +159,7 @@ checksum = "53d1ccbaf7d9ec9537465a97bf19edc1a4e158ecb49fc16178202238c569cc42" [[package]] name = "benches" -version = "0.0.4" +version = "0.0.5" dependencies = [ "askama", "criterion", @@ -1126,14 +1126,14 @@ checksum = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072" [[package]] name = "sailfish" -version = "0.0.4" +version = "0.0.5" dependencies = [ "ryu", ] [[package]] name = "sailfish-compiler" -version = "0.0.4" +version = "0.0.5" dependencies = [ "memchr", "proc-macro2", @@ -1143,7 +1143,7 @@ dependencies = [ [[package]] name = "sailfish-macros" -version = "0.0.4" +version = "0.0.5" dependencies = [ "proc-macro2", "sailfish-compiler", diff --git a/benches/Cargo.toml b/benches/Cargo.toml index 80aa309..730132c 100644 --- a/benches/Cargo.toml +++ b/benches/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "benches" -version = "0.0.4" +version = "0.0.5" authors = ["Dirkjan Ochtman ", "Ryohei Machida "] edition = "2018" publish = false diff --git a/docs/en/docs/installation.md b/docs/en/docs/installation.md index e6da601..1f3a881 100644 --- a/docs/en/docs/installation.md +++ b/docs/en/docs/installation.md @@ -4,8 +4,8 @@ In order to use sailfish templates, you have add two dependencies in your `Cargo ```toml [dependencies] -sailfish = "0.0.4" -sailfish-macros = "0.0.4" +sailfish = "0.0.5" +sailfish-macros = "0.0.5" ``` `sailfish` crate contains runtime for rendering contents, and `sailfish-macros` serves you derive macros to compile and import the template files. diff --git a/examples/Cargo.toml b/examples/Cargo.toml index da2571c..e970092 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "examples" -version = "0.0.4" +version = "0.0.5" authors = ["Ryohei Machida "] edition = "2018" publish = false diff --git a/integration-tests/Cargo.toml b/integration-tests/Cargo.toml index 36cc58c..3502085 100644 --- a/integration-tests/Cargo.toml +++ b/integration-tests/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "integration-tests" -version = "0.0.4" +version = "0.0.5" authors = ["Kogia-sima "] edition = "2018" publish = false diff --git a/sailfish-compiler/Cargo.toml b/sailfish-compiler/Cargo.toml index d4c9792..31460a7 100644 --- a/sailfish-compiler/Cargo.toml +++ b/sailfish-compiler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sailfish-compiler" -version = "0.0.4" +version = "0.0.5" authors = ["Ryohei Machida "] description = "Really fast, intuitive template engine for Rust" homepage = "https://github.com/Kogia-sima/sailfish" diff --git a/sailfish-macros/Cargo.toml b/sailfish-macros/Cargo.toml index bccbb98..ce768f8 100644 --- a/sailfish-macros/Cargo.toml +++ b/sailfish-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sailfish-macros" -version = "0.0.4" +version = "0.0.5" authors = ["Ryohei Machida "] description = "Really fast, intuitive template engine for Rust" homepage = "https://github.com/Kogia-sima/sailfish" @@ -21,5 +21,5 @@ test = false doctest = false [dependencies] -sailfish-compiler = { path = "../sailfish-compiler", version = "0.0.4", features = ["procmacro"] } +sailfish-compiler = { path = "../sailfish-compiler", version = "0.0.5", features = ["procmacro"] } proc-macro2 = "1.0.17" diff --git a/sailfish/Cargo.toml b/sailfish/Cargo.toml index d525556..91f6008 100644 --- a/sailfish/Cargo.toml +++ b/sailfish/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sailfish" -version = "0.0.4" +version = "0.0.5" authors = ["Ryohei Machida "] description = "Really fast, intuitive template engine for Rust" homepage = "https://github.com/Kogia-sima/sailfish"