Bump version (0.2.1 => v0.2.2)

This commit is contained in:
Kogia-sima 2020-11-11 10:48:10 +09:00
parent af6c052b1f
commit cfd40f573b
10 changed files with 20 additions and 20 deletions

16
Cargo.lock generated
View File

@ -37,12 +37,12 @@ dependencies = [
[[package]] [[package]]
name = "integration-tests" name = "integration-tests"
version = "0.2.1" version = "0.2.2"
dependencies = [ dependencies = [
"pretty_assertions 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", "pretty_assertions 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
"sailfish 0.2.1", "sailfish 0.2.2",
"sailfish-compiler 0.2.1", "sailfish-compiler 0.2.2",
"sailfish-macros 0.2.1", "sailfish-macros 0.2.2",
"trybuild 1.0.28 (registry+https://github.com/rust-lang/crates.io-index)", "trybuild 1.0.28 (registry+https://github.com/rust-lang/crates.io-index)",
] ]
@ -113,7 +113,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]] [[package]]
name = "sailfish" name = "sailfish"
version = "0.2.1" version = "0.2.2"
dependencies = [ dependencies = [
"itoap 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "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)", "ryu 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
@ -122,7 +122,7 @@ dependencies = [
[[package]] [[package]]
name = "sailfish-compiler" name = "sailfish-compiler"
version = "0.2.1" version = "0.2.2"
dependencies = [ dependencies = [
"home 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)", "home 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)",
"memchr 2.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "memchr 2.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
@ -135,10 +135,10 @@ dependencies = [
[[package]] [[package]]
name = "sailfish-macros" name = "sailfish-macros"
version = "0.2.1" version = "0.2.2"
dependencies = [ dependencies = [
"proc-macro2 1.0.18 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 1.0.18 (registry+https://github.com/rust-lang/crates.io-index)",
"sailfish-compiler 0.2.1", "sailfish-compiler 0.2.2",
] ]
[[package]] [[package]]

View File

@ -30,8 +30,8 @@ Dependencies:
```toml ```toml
[dependencies] [dependencies]
sailfish = "0.2.1" sailfish = "0.2.2"
sailfish-macros = "0.2.1" sailfish-macros = "0.2.2"
``` ```
Template file (templates/hello.stpl): Template file (templates/hello.stpl):

View File

@ -1,6 +1,6 @@
[package] [package]
name = "benches" name = "benches"
version = "0.2.1" version = "0.2.2"
authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>", "Ryohei Machida <orcinus4627@gmail.com>"] authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>", "Ryohei Machida <orcinus4627@gmail.com>"]
build = "src/build.rs" build = "src/build.rs"
edition = "2018" edition = "2018"

View File

@ -4,8 +4,8 @@ In order to use sailfish templates, you have add two dependencies in your `Cargo
```toml ```toml
[dependencies] [dependencies]
sailfish = "0.2.1" sailfish = "0.2.2"
sailfish-macros = "0.2.1" sailfish-macros = "0.2.2"
``` ```
`sailfish` crate contains runtime for rendering contents, and `sailfish-macros` serves you derive macros to compile and import the template files. `sailfish` crate contains runtime for rendering contents, and `sailfish-macros` serves you derive macros to compile and import the template files.

View File

@ -1,6 +1,6 @@
[package] [package]
name = "sailfish-examples" name = "sailfish-examples"
version = "0.2.1" version = "0.2.2"
authors = ["Ryohei Machida <orcinus4627@gmail.com>"] authors = ["Ryohei Machida <orcinus4627@gmail.com>"]
edition = "2018" edition = "2018"
publish = false publish = false

View File

@ -1,6 +1,6 @@
[package] [package]
name = "sailfish-compiler" name = "sailfish-compiler"
version = "0.2.1" version = "0.2.2"
authors = ["Ryohei Machida <orcinus4627@gmail.com>"] authors = ["Ryohei Machida <orcinus4627@gmail.com>"]
description = "Really fast, intuitive template engine for Rust" description = "Really fast, intuitive template engine for Rust"
homepage = "https://github.com/Kogia-sima/sailfish" homepage = "https://github.com/Kogia-sima/sailfish"

View File

@ -1,6 +1,6 @@
[package] [package]
name = "sailfish-macros" name = "sailfish-macros"
version = "0.2.1" version = "0.2.2"
authors = ["Ryohei Machida <orcinus4627@gmail.com>"] authors = ["Ryohei Machida <orcinus4627@gmail.com>"]
description = "Really fast, intuitive template engine for Rust" description = "Really fast, intuitive template engine for Rust"
homepage = "https://github.com/Kogia-sima/sailfish" homepage = "https://github.com/Kogia-sima/sailfish"
@ -29,6 +29,6 @@ proc-macro2 = "1.0.11"
[dependencies.sailfish-compiler] [dependencies.sailfish-compiler]
path = "../sailfish-compiler" path = "../sailfish-compiler"
version = "0.2.1" version = "0.2.2"
default-features = false default-features = false
features = ["procmacro"] features = ["procmacro"]

View File

@ -1,6 +1,6 @@
[package] [package]
name = "fuzzing-tests" name = "fuzzing-tests"
version = "0.2.1" version = "0.2.2"
authors = ["Ryohei Machida <orcinus4627@gmail.com>"] authors = ["Ryohei Machida <orcinus4627@gmail.com>"]
edition = "2018" edition = "2018"
publish = false publish = false

View File

@ -1,6 +1,6 @@
[package] [package]
name = "integration-tests" name = "integration-tests"
version = "0.2.1" version = "0.2.2"
authors = ["Kogia-sima <orcinus4627@gmail.com>"] authors = ["Kogia-sima <orcinus4627@gmail.com>"]
edition = "2018" edition = "2018"
publish = false publish = false

View File

@ -1,6 +1,6 @@
[package] [package]
name = "sailfish" name = "sailfish"
version = "0.2.1" version = "0.2.2"
authors = ["Ryohei Machida <orcinus4627@gmail.com>"] authors = ["Ryohei Machida <orcinus4627@gmail.com>"]
description = "Really fast, intuitive template engine for Rust" description = "Really fast, intuitive template engine for Rust"
homepage = "https://github.com/Kogia-sima/sailfish" homepage = "https://github.com/Kogia-sima/sailfish"