Skip to content

Commit 9b0cd62

Browse files
committed
Update Version
1 parent 329d55b commit 9b0cd62

10 files changed

Lines changed: 19 additions & 15 deletions

File tree

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Dependencies:
3131

3232
```toml
3333
[dependencies]
34-
sailfish = "0.6.0"
34+
sailfish = "0.6.1"
3535
```
3636

3737
Template file (templates/hello.stpl):

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.6.0"
7+
sailfish = "0.6.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.6.0"
3+
version = "0.6.1"
44
authors = ["Ryohei Machida <orcinus4627@gmail.com>"]
55
edition = "2018"
66
publish = false

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.6.0"
3+
version = "0.6.1"
44
authors = ["Ryohei Machida <orcinus4627@gmail.com>"]
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.6.0"
3+
version = "0.6.1"
44
authors = ["Ryohei Machida <orcinus4627@gmail.com>"]
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.6.0"
33+
version = "0.6.1"
3434
default-features = false
3535
features = ["procmacro"]

sailfish-tests/fuzzing-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 = "fuzzing-tests"
3-
version = "0.6.0"
3+
version = "0.6.1"
44
authors = ["Ryohei Machida <orcinus4627@gmail.com>"]
55
edition = "2018"
66
publish = false

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.6.0"
3+
version = "0.6.1"
44
authors = ["Ryohei Machida <orcinus4627@gmail.com>"]
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.6.0"
3+
version = "0.6.1"
44
authors = ["Ryohei Machida <orcinus4627@gmail.com>"]
55
description = "Simple, small, and extremely fast template engine for Rust"
66
homepage = "https://github.com/rust-sailfish/sailfish"
@@ -29,7 +29,7 @@ serde_json = { version = "1.0.95", optional = true }
2929

3030
[dependencies.sailfish-macros]
3131
path = "../sailfish-macros"
32-
version = "0.6.0"
32+
version = "0.6.1"
3333
optional = true
3434

3535
[build-dependencies]

scripts/bump-version.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ if [ $# != 1 ]; then
66
exit 1
77
fi
88

9-
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
9+
SCRIPT_DIR="$( pwd )"
1010
cd $SCRIPT_DIR/..
1111

1212
OLD_VERSION="$(cat README.md |grep '^sailfish\s*=' |cut -d '"' -f2)"
@@ -26,3 +26,7 @@ sed -i -e "s/^\(sailfish.*\) = .*/\1 = \"$NEW_VERSION\"/" README.md
2626
find docs/en -path "*.md" -type f |while read f; do sed -i -e "s/^\(sailfish.*\) = .*/\1 = \"$NEW_VERSION\"/" "$f"; done
2727

2828
cargo update -p sailfish --precise "${NEW_VERSION}"
29+
30+
#update the sailfish-compiler with cargo publish
31+
#update the sailfish-macros with cargo publish
32+
#update the sailfish with cargo publish

0 commit comments

Comments
 (0)