Skip to content

Commit e35eea0

Browse files
committed
Update version information
1 parent 0c7f034 commit e35eea0

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

docs/en/docs/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ In order to use sailfish templates, you have add two dependencies in your `Cargo
44

55
``` toml
66
[dependencies]
7-
sailfish = "0.9.0"
7+
sailfish = "0.9.1"
88
```
99

1010
## Feature Flags

examples/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sailfish-examples"
3-
version = "0.9.0"
3+
version = "0.9.1"
44
authors = ["Ryohei Machida <[email protected]>"]
55
edition = "2018"
66
publish = false

rustfmt.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
max_width = 90
22
hard_tabs = false
33
use_field_init_shorthand = true
4-
edition = "2018"
4+
edition = "2021"
55
reorder_imports = true
66
reorder_modules = true

sailfish-compiler/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sailfish-compiler"
3-
version = "0.9.0"
3+
version = "0.9.1"
44
authors = ["Ryohei Machida <[email protected]>"]
55
description = "Simple, small, and extremely fast template engine for Rust"
66
homepage = "https://github.com/rust-sailfish/sailfish"

sailfish-macros/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sailfish-macros"
3-
version = "0.9.0"
3+
version = "0.9.1"
44
authors = ["Ryohei Machida <[email protected]>"]
55
description = "Simple, small, and extremely fast template engine for Rust"
66
homepage = "https://github.com/rust-sailfish/sailfish"
@@ -30,6 +30,6 @@ proc-macro2 = "1.0.56"
3030

3131
[dependencies.sailfish-compiler]
3232
path = "../sailfish-compiler"
33-
version = "0.9.0"
33+
version = "0.9.1"
3434
default-features = false
3535
features = ["procmacro"]

sailfish-tests/integration-tests/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "integration-tests"
3-
version = "0.9.0"
3+
version = "0.9.1"
44
authors = ["Ryohei Machida <[email protected]>"]
55
edition = "2018"
66
publish = false

sailfish/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sailfish"
3-
version = "0.9.0"
3+
version = "0.9.1"
44
authors = ["Ryohei Machida <[email protected]>"]
55
description = "Simple, small, and extremely fast template engine for Rust"
66
homepage = "https://github.com/rust-sailfish/sailfish"
@@ -31,7 +31,7 @@ serde_json = { version = "1.0.95", optional = true }
3131

3232
[dependencies.sailfish-macros]
3333
path = "../sailfish-macros"
34-
version = "0.9.0"
34+
version = "0.9.1"
3535
default-features = false
3636
optional = true
3737

syntax/tree-sitter-sailfish/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "tree-sitter-sailfish"
33
description = "Sailfish grammar for tree-sitter"
4-
version = "0.1.0"
4+
version = "0.9.1"
55
license = "MIT"
66
readme = "README.md"
77
keywords = ["incremental", "parsing", "tree-sitter", "sailfish"]

0 commit comments

Comments
 (0)