diff --git a/Cargo.lock b/Cargo.lock index 42b1b0c..2e9962d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -661,11 +661,11 @@ dependencies = [ [[package]] name = "integration-tests" -version = "0.1.2" +version = "0.1.3" dependencies = [ "pretty_assertions 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sailfish 0.1.2", - "sailfish-macros 0.1.2", + "sailfish 0.1.3", + "sailfish-macros 0.1.3", "trybuild 1.0.28 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1045,7 +1045,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "sailfish" -version = "0.1.2" +version = "0.1.3" dependencies = [ "itoap 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "ryu 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1054,7 +1054,7 @@ dependencies = [ [[package]] name = "sailfish-compiler" -version = "0.1.2" +version = "0.1.3" 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)", @@ -1066,20 +1066,20 @@ dependencies = [ [[package]] name = "sailfish-examples" -version = "0.1.2" +version = "0.1.3" 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.1.2", - "sailfish-macros 0.1.2", + "sailfish 0.1.3", + "sailfish-macros 0.1.3", ] [[package]] name = "sailfish-macros" -version = "0.1.2" +version = "0.1.3" dependencies = [ "proc-macro2 1.0.18 (registry+https://github.com/rust-lang/crates.io-index)", - "sailfish-compiler 0.1.2", + "sailfish-compiler 0.1.3", ] [[package]] diff --git a/README.md b/README.md index 525ea2e..5760ac8 100644 --- a/README.md +++ b/README.md @@ -30,8 +30,8 @@ Dependencies: ```toml [dependencies] -sailfish = "0.1.2" -sailfish-macros = "0.1.2" +sailfish = "0.1.3" +sailfish-macros = "0.1.3" ``` Template file (templates/hello.stpl): diff --git a/benches/Cargo.toml b/benches/Cargo.toml index f136dea..b14c426 100644 --- a/benches/Cargo.toml +++ b/benches/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "benches" -version = "0.1.0" +version = "0.1.3" authors = ["Dirkjan Ochtman ", "Ryohei Machida "] build = "src/build.rs" edition = "2018" diff --git a/docs/en/docs/installation.md b/docs/en/docs/installation.md index 5903103..a43fd33 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.1.2" -sailfish-macros = "0.1.2" +sailfish = "0.1.3" +sailfish-macros = "0.1.3" ``` `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 e492636..2c8acc0 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sailfish-examples" -version = "0.1.2" +version = "0.1.3" authors = ["Ryohei Machida "] edition = "2018" publish = false diff --git a/integration-tests/Cargo.toml b/integration-tests/Cargo.toml index 6c3f602..7874aa2 100644 --- a/integration-tests/Cargo.toml +++ b/integration-tests/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "integration-tests" -version = "0.1.2" +version = "0.1.3" authors = ["Kogia-sima "] edition = "2018" publish = false diff --git a/sailfish-compiler/Cargo.toml b/sailfish-compiler/Cargo.toml index 7d8bd8d..ba2febf 100644 --- a/sailfish-compiler/Cargo.toml +++ b/sailfish-compiler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sailfish-compiler" -version = "0.1.2" +version = "0.1.3" 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 bf9c539..a6beebc 100644 --- a/sailfish-macros/Cargo.toml +++ b/sailfish-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sailfish-macros" -version = "0.1.2" +version = "0.1.3" authors = ["Ryohei Machida "] description = "Really fast, intuitive template engine for Rust" homepage = "https://github.com/Kogia-sima/sailfish" @@ -29,6 +29,6 @@ proc-macro2 = "1.0.11" [dependencies.sailfish-compiler] path = "../sailfish-compiler" -version = "0.1.2" +version = "0.1.3" default-features = false features = ["procmacro"] diff --git a/sailfish/Cargo.toml b/sailfish/Cargo.toml index 481d688..88966c9 100644 --- a/sailfish/Cargo.toml +++ b/sailfish/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sailfish" -version = "0.1.2" +version = "0.1.3" authors = ["Ryohei Machida "] description = "Really fast, intuitive template engine for Rust" homepage = "https://github.com/Kogia-sima/sailfish"