Skip to content

Commit

Permalink
Update version (v0.5.11)
Browse files Browse the repository at this point in the history
  • Loading branch information
mtshiba committed Nov 4, 2022
1 parent d9e8a1a commit b239472
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 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.5.11-nightly.7"
version = "0.5.11"
description = "The Erg programming language"
authors = ["erg-lang team <[email protected]>"]
license = "MIT OR Apache-2.0"
Expand All @@ -18,7 +18,7 @@ members = [
]

[workspace.package]
version = "0.5.11-nightly.7"
version = "0.5.11"
authors = ["erg-lang team <[email protected]>"]
license = "MIT OR Apache-2.0"
edition = "2021"
Expand Down Expand Up @@ -50,9 +50,9 @@ traditional_chinese = [
pre-commit = []

[dependencies]
erg_common = { version = "0.5.11-nightly.7", path = "./compiler/erg_common" }
erg_parser = { version = "0.5.11-nightly.7", path = "./compiler/erg_parser" }
erg_compiler = { version = "0.5.11-nightly.7", path = "./compiler/erg_compiler" }
erg_common = { version = "0.5.11", path = "./compiler/erg_common" }
erg_parser = { version = "0.5.11", path = "./compiler/erg_parser" }
erg_compiler = { version = "0.5.11", path = "./compiler/erg_compiler" }

# [workspace]
# member = ["cm", "dyne"]
Expand Down
4 changes: 2 additions & 2 deletions compiler/erg_compiler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ traditional_chinese = [
]

[dependencies]
erg_common = { version = "0.5.11-nightly.7", path = "../erg_common" }
erg_parser = { version = "0.5.11-nightly.7", path = "../erg_parser" }
erg_common = { version = "0.5.11", path = "../erg_common" }
erg_parser = { version = "0.5.11", path = "../erg_parser" }

[lib]
path = "lib.rs"
Expand Down
2 changes: 1 addition & 1 deletion compiler/erg_parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ simplified_chinese = ["erg_common/simplified_chinese"]
traditional_chinese = ["erg_common/traditional_chinese"]

[dependencies]
erg_common = { version = "0.5.11-nightly.7", path = "../erg_common" }
erg_common = { version = "0.5.11", path = "../erg_common" }

[lib]
path = "lib.rs"
Expand Down

0 comments on commit b239472

Please sign in to comment.