Skip to content

Commit 63b003a

Browse files
committed
Update version (v0.2.2)
1 parent 30f6e98 commit 63b003a

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

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.1"
3+
version = "0.2.2"
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.1.4", path = "./compiler/erg_common" }
35-
erg_parser = { version = "0.1.0", path = "./compiler/erg_parser" }
36-
erg_compiler = { version = "0.2.0", path = "./compiler/erg_compiler" }
34+
erg_common = { version = "0.2.2", path = "./compiler/erg_common" }
35+
erg_parser = { version = "0.2.2", path = "./compiler/erg_parser" }
36+
erg_compiler = { version = "0.2.2", path = "./compiler/erg_compiler" }
3737

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

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.1.4"
3+
version = "0.2.2"
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.0"
3+
version = "0.2.2"
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.1.4", path = "../erg_common" }
19-
erg_parser = { version = "0.1.1", path = "../erg_parser" }
18+
erg_common = { version = "0.2.2", path = "../erg_common" }
19+
erg_parser = { version = "0.2.2", 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.1.1"
3+
version = "0.2.2"
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.1.4", path = "../erg_common" }
17+
erg_common = { version = "0.2.2", path = "../erg_common" }
1818

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

0 commit comments

Comments
 (0)