Skip to content

Commit

Permalink
Update version (v0.5.13)
Browse files Browse the repository at this point in the history
  • Loading branch information
mtshiba committed Nov 26, 2022
1 parent 54686b0 commit f2fedf6
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 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.12"
version = "0.5.13"
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.12"
version = "0.5.13"
authors = ["erg-lang team <[email protected]>"]
license = "MIT OR Apache-2.0"
edition = "2021"
Expand Down Expand Up @@ -48,9 +48,9 @@ pretty = ["erg_common/pretty", "erg_parser/pretty", "erg_compiler/unicode"]
pre-commit = []

[dependencies]
erg_common = { version = "0.5.12", path = "./compiler/erg_common" }
erg_parser = { version = "0.5.12", path = "./compiler/erg_parser" }
erg_compiler = { version = "0.5.12", path = "./compiler/erg_compiler" }
erg_common = { version = "0.5.13", path = "./compiler/erg_common" }
erg_parser = { version = "0.5.13", path = "./compiler/erg_parser" }
erg_compiler = { version = "0.5.13", path = "./compiler/erg_compiler" }

[lib]
path = "src/lib.rs"
Expand Down
6 changes: 3 additions & 3 deletions compiler/erg_compiler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ unicode = ["erg_common/unicode"]
pretty = ["erg_common/pretty"]

[dependencies]
erg_common = { version = "0.5.12", path = "../erg_common" }
erg_parser = { version = "0.5.12", path = "../erg_parser" }
erg_common = { version = "0.5.13", path = "../erg_common" }
erg_parser = { version = "0.5.13", path = "../erg_parser" }

[build-dependencies]
erg_common = { version = "0.5.12", path = "../erg_common" }
erg_common = { version = "0.5.13", path = "../erg_common" }

[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 @@ -18,7 +18,7 @@ unicode = ["erg_common/unicode"]
pretty = ["erg_common/pretty"]

[dependencies]
erg_common = { version = "0.5.12", path = "../erg_common" }
erg_common = { version = "0.5.13", path = "../erg_common" }

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

0 comments on commit f2fedf6

Please sign in to comment.