Skip to content

Commit 7206df9

Browse files
committed
Update version (v0.2.5)
1 parent ed61bc3 commit 7206df9

File tree

6 files changed

+17
-17
lines changed

6 files changed

+17
-17
lines changed

Cargo.lock

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "erg"
3-
version = "0.2.4"
3+
version = "0.2.5"
44
description = "The Erg programming language"
55
authors = ["Shunsuke Shibayama <sbym1346@gmail.com>"]
66
license = "MIT OR Apache-2.0"
@@ -31,9 +31,9 @@ japanese = [
3131
]
3232

3333
[dependencies]
34-
erg_common = { version = "0.2.4", path = "./compiler/erg_common" }
35-
erg_parser = { version = "0.2.4", path = "./compiler/erg_parser" }
36-
erg_compiler = { version = "0.2.4", path = "./compiler/erg_compiler" }
34+
erg_common = { version = "0.2.5", path = "./compiler/erg_common" }
35+
erg_parser = { version = "0.2.5", path = "./compiler/erg_parser" }
36+
erg_compiler = { version = "0.2.5", path = "./compiler/erg_compiler" }
3737

3838
# [workspace]
3939
# member = ["cm", "dyne"]

cargo_publish.bat

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ if %~dp0 == C:%homepath%\GitHub\erg\ (
44
cd compiler/erg_common
55
echo publish erg_common ...
66
cargo publish
7-
timeout 20
7+
timeout 15
88
cd ../erg_parser
99
echo publish erg_parser ...
1010
cargo publish
11-
timeout 20
11+
timeout 15
1212
cd ../erg_compiler
1313
echo publish erg_compiler ...
1414
cargo publish
15-
timeout 20
15+
timeout 15
1616
cd ../../
1717
cargo publish
1818
echo completed

compiler/erg_common/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "erg_common"
3-
version = "0.2.4"
3+
version = "0.2.5"
44
description = "A common components library of Erg"
55
authors = ["Shunsuke Shibayama <sbym1346@gmail.com>"]
66
license = "MIT OR Apache-2.0"

compiler/erg_compiler/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "erg_compiler"
3-
version = "0.2.4"
3+
version = "0.2.5"
44
description = "Centimetre: the Erg compiler"
55
authors = ["Shunsuke Shibayama <sbym1346@gmail.com>"]
66
license = "MIT OR Apache-2.0"
@@ -15,8 +15,8 @@ debug = [ "erg_common/debug", "erg_parser/debug" ]
1515
japanese = [ "erg_common/japanese", "erg_parser/japanese" ]
1616

1717
[dependencies]
18-
erg_common = { version = "0.2.4", path = "../erg_common" }
19-
erg_parser = { version = "0.2.4", path = "../erg_parser" }
18+
erg_common = { version = "0.2.5", path = "../erg_common" }
19+
erg_parser = { version = "0.2.5", path = "../erg_parser" }
2020

2121
[lib]
2222
path = "lib.rs"

compiler/erg_parser/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "erg_parser"
3-
version = "0.2.4"
3+
version = "0.2.5"
44
description = "The Erg parser"
55
authors = ["mtshiba <sbym1346@gmail.com>"]
66
license = "MIT OR Apache-2.0"
@@ -14,7 +14,7 @@ debug = [ "erg_common/debug" ]
1414
japanese = [ "erg_common/japanese" ]
1515

1616
[dependencies]
17-
erg_common = { version = "0.2.4", path = "../erg_common" }
17+
erg_common = { version = "0.2.5", path = "../erg_common" }
1818

1919
[lib]
2020
path = "lib.rs"

0 commit comments

Comments
 (0)