Skip to content

Commit

Permalink
Update version (v0.2.5)
Browse files Browse the repository at this point in the history
  • Loading branch information
mtshiba committed Aug 17, 2022
1 parent ed61bc3 commit 7206df9
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 17 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.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "erg"
version = "0.2.4"
version = "0.2.5"
description = "The Erg programming language"
authors = ["Shunsuke Shibayama <[email protected]>"]
license = "MIT OR Apache-2.0"
Expand Down Expand Up @@ -31,9 +31,9 @@ japanese = [
]

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

# [workspace]
# member = ["cm", "dyne"]
Expand Down
6 changes: 3 additions & 3 deletions cargo_publish.bat
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ if %~dp0 == C:%homepath%\GitHub\erg\ (
cd compiler/erg_common
echo publish erg_common ...
cargo publish
timeout 20
timeout 15
cd ../erg_parser
echo publish erg_parser ...
cargo publish
timeout 20
timeout 15
cd ../erg_compiler
echo publish erg_compiler ...
cargo publish
timeout 20
timeout 15
cd ../../
cargo publish
echo completed
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.2.4"
version = "0.2.5"
description = "A common components library of Erg"
authors = ["Shunsuke Shibayama <[email protected]>"]
license = "MIT OR Apache-2.0"
Expand Down
6 changes: 3 additions & 3 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.2.4"
version = "0.2.5"
description = "Centimetre: the Erg compiler"
authors = ["Shunsuke Shibayama <[email protected]>"]
license = "MIT OR Apache-2.0"
Expand All @@ -15,8 +15,8 @@ debug = [ "erg_common/debug", "erg_parser/debug" ]
japanese = [ "erg_common/japanese", "erg_parser/japanese" ]

[dependencies]
erg_common = { version = "0.2.4", path = "../erg_common" }
erg_parser = { version = "0.2.4", path = "../erg_parser" }
erg_common = { version = "0.2.5", path = "../erg_common" }
erg_parser = { version = "0.2.5", path = "../erg_parser" }

[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.2.4"
version = "0.2.5"
description = "The Erg parser"
authors = ["mtshiba <[email protected]>"]
license = "MIT OR Apache-2.0"
Expand All @@ -14,7 +14,7 @@ debug = [ "erg_common/debug" ]
japanese = [ "erg_common/japanese" ]

[dependencies]
erg_common = { version = "0.2.4", path = "../erg_common" }
erg_common = { version = "0.2.5", path = "../erg_common" }

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

0 comments on commit 7206df9

Please sign in to comment.