Skip to content

Commit

Permalink
Update version (v0.4.0-beta.0)
Browse files Browse the repository at this point in the history
  • Loading branch information
mtshiba committed Sep 8, 2022
1 parent da7b82d commit e6f97df
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 19 deletions.
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "erg"
version = "0.3.2"
version = "0.4.0-beta.0"
description = "The Erg programming language"
authors = ["Shunsuke Shibayama <[email protected]>"]
license = "MIT OR Apache-2.0"
Expand Down Expand Up @@ -46,10 +46,10 @@ traditional_chinese = [
]

[dependencies]
erg_common = { version = "0.3.2", path = "./compiler/erg_common" }
erg_parser = { version = "0.3.2", path = "./compiler/erg_parser" }
erg_compiler = { version = "0.3.2", path = "./compiler/erg_compiler" }
erg_type = { version = "0.3.2", path = "./compiler/erg_type" }
erg_common = { version = "0.4.0-beta.0", path = "./compiler/erg_common" }
erg_parser = { version = "0.4.0-beta.0", path = "./compiler/erg_parser" }
erg_compiler = { version = "0.4.0-beta.0", path = "./compiler/erg_compiler" }
erg_type = { version = "0.4.0-beta.0", path = "./compiler/erg_type" }

# [workspace]
# member = ["cm", "dyne"]
Expand Down
2 changes: 1 addition & 1 deletion compiler/erg_common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "erg_common"
version = "0.3.2"
version = "0.4.0-beta.0"
description = "A common components library of Erg"
authors = ["Shunsuke Shibayama <[email protected]>"]
license = "MIT OR Apache-2.0"
Expand Down
8 changes: 4 additions & 4 deletions compiler/erg_compiler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "erg_compiler"
version = "0.3.2"
version = "0.4.0-beta.0"
description = "Centimetre: the Erg compiler"
authors = ["Shunsuke Shibayama <[email protected]>"]
license = "MIT OR Apache-2.0"
Expand All @@ -17,9 +17,9 @@ simplified_chinese = [ "erg_common/simplified_chinese", "erg_parser/simplified_c
traditional_chinese = [ "erg_common/traditional_chinese", "erg_parser/traditional_chinese", "erg_type/traditional_chinese" ]

[dependencies]
erg_common = { version = "0.3.2", path = "../erg_common" }
erg_parser = { version = "0.3.2", path = "../erg_parser" }
erg_type = { version = "0.3.2", path = "../erg_type" }
erg_common = { version = "0.4.0-beta.0", path = "../erg_common" }
erg_parser = { version = "0.4.0-beta.0", path = "../erg_parser" }
erg_type = { version = "0.4.0-beta.0", path = "../erg_type" }

[lib]
path = "lib.rs"
Expand Down
4 changes: 2 additions & 2 deletions compiler/erg_parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "erg_parser"
version = "0.3.2"
version = "0.4.0-beta.0"
description = "The Erg parser"
authors = ["mtshiba <[email protected]>"]
license = "MIT OR Apache-2.0"
Expand All @@ -16,7 +16,7 @@ simplified_chinese = [ "erg_common/simplified_chinese" ]
traditional_chinese = [ "erg_common/traditional_chinese" ]

[dependencies]
erg_common = { version = "0.3.2", path = "../erg_common" }
erg_common = { version = "0.4.0-beta.0", path = "../erg_common" }

[lib]
path = "lib.rs"
Expand Down
4 changes: 2 additions & 2 deletions compiler/erg_type/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "erg_type"
version = "0.3.2"
version = "0.4.0-beta.0"
description = "APIs for Erg types"
authors = ["Shunsuke Shibayama <[email protected]>"]
license = "MIT OR Apache-2.0"
Expand All @@ -18,7 +18,7 @@ simplified_chinese = [ "erg_common/simplified_chinese" ]
traditional_chinese = [ "erg_common/traditional_chinese" ]

[dependencies]
erg_common = { version = "0.3.2", path = "../erg_common" }
erg_common = { version = "0.4.0-beta.0", path = "../erg_common" }

[lib]
path = "lib.rs"

0 comments on commit e6f97df

Please sign in to comment.