Skip to content

Commit

Permalink
Update version (v0.5.0-beta.0)
Browse files Browse the repository at this point in the history
  • Loading branch information
mtshiba committed Sep 18, 2022
1 parent d62e86d commit 54fa23c
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 20 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.4.7"
version = "0.5.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.4.7", path = "./compiler/erg_common" }
erg_parser = { version = "0.4.7", path = "./compiler/erg_parser" }
erg_compiler = { version = "0.4.7", path = "./compiler/erg_compiler" }
erg_type = { version = "0.4.7", path = "./compiler/erg_type" }
erg_common = { version = "0.5.0-beta.0", path = "./compiler/erg_common" }
erg_parser = { version = "0.5.0-beta.0", path = "./compiler/erg_parser" }
erg_compiler = { version = "0.5.0-beta.0", path = "./compiler/erg_compiler" }
erg_type = { version = "0.5.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.4.7"
version = "0.5.0-beta.0"
description = "A common components library of Erg"
authors = ["erg-lang team <[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.4.7"
version = "0.5.0-beta.0"
description = "Centimetre: the Erg compiler"
authors = ["erg-lang team <[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.4.7", path = "../erg_common" }
erg_parser = { version = "0.4.7", path = "../erg_parser" }
erg_type = { version = "0.4.7", path = "../erg_type" }
erg_common = { version = "0.5.0-beta.0", path = "../erg_common" }
erg_parser = { version = "0.5.0-beta.0", path = "../erg_parser" }
erg_type = { version = "0.5.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.4.7"
version = "0.5.0-beta.0"
description = "The Erg parser"
authors = ["erg-lang team <[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.4.7", path = "../erg_common" }
erg_common = { version = "0.5.0-beta.0", path = "../erg_common" }

[lib]
path = "lib.rs"
Expand Down
6 changes: 3 additions & 3 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.4.7"
version = "0.5.0-beta.0"
description = "APIs for Erg types"
authors = ["erg-lang team <[email protected]>"]
license = "MIT OR Apache-2.0"
Expand All @@ -18,8 +18,8 @@ simplified_chinese = [ "erg_common/simplified_chinese" ]
traditional_chinese = [ "erg_common/traditional_chinese" ]

[dependencies]
erg_common = { version = "0.4.7", path = "../erg_common" }
erg_parser = { version = "0.4.7", path = "../erg_parser" }
erg_common = { version = "0.5.0-beta.0", path = "../erg_common" }
erg_parser = { version = "0.5.0-beta.0", path = "../erg_parser" }

[lib]
path = "lib.rs"

0 comments on commit 54fa23c

Please sign in to comment.