mirror of
https://github.com/erg-lang/erg.git
synced 2025-09-29 20:34:44 +00:00
Update version (v0.3.0)
This commit is contained in:
parent
bce13ef270
commit
8e50ed8384
6 changed files with 15 additions and 12 deletions
10
Cargo.toml
10
Cargo.toml
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "erg"
|
name = "erg"
|
||||||
version = "0.2.8"
|
version = "0.3.0"
|
||||||
description = "The Erg programming language"
|
description = "The Erg programming language"
|
||||||
authors = ["Shunsuke Shibayama <sbym1346@gmail.com>"]
|
authors = ["Shunsuke Shibayama <sbym1346@gmail.com>"]
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
|
@ -46,10 +46,10 @@ traditional_chinese = [
|
||||||
]
|
]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
erg_common = { version = "0.2.8", path = "./compiler/erg_common" }
|
erg_common = { version = "0.3.0", path = "./compiler/erg_common" }
|
||||||
erg_parser = { version = "0.2.8", path = "./compiler/erg_parser" }
|
erg_parser = { version = "0.3.0", path = "./compiler/erg_parser" }
|
||||||
erg_compiler = { version = "0.2.8", path = "./compiler/erg_compiler" }
|
erg_compiler = { version = "0.3.0", path = "./compiler/erg_compiler" }
|
||||||
erg_type = { version = "0.2.8", path = "./compiler/erg_type" }
|
erg_type = { version = "0.3.0", path = "./compiler/erg_type" }
|
||||||
|
|
||||||
# [workspace]
|
# [workspace]
|
||||||
# member = ["cm", "dyne"]
|
# member = ["cm", "dyne"]
|
||||||
|
|
|
@ -5,6 +5,10 @@ if %~dp0 == C:%homepath%\GitHub\erg\ (
|
||||||
echo publish erg_common ...
|
echo publish erg_common ...
|
||||||
cargo publish
|
cargo publish
|
||||||
timeout 10
|
timeout 10
|
||||||
|
cd ../erg_type
|
||||||
|
echo publish erg_type ...
|
||||||
|
cargo publish
|
||||||
|
timeout 10
|
||||||
cd ../erg_parser
|
cd ../erg_parser
|
||||||
echo publish erg_parser ...
|
echo publish erg_parser ...
|
||||||
cargo publish
|
cargo publish
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "erg_common"
|
name = "erg_common"
|
||||||
version = "0.2.8"
|
version = "0.3.0"
|
||||||
description = "A common components library of Erg"
|
description = "A common components library of Erg"
|
||||||
authors = ["Shunsuke Shibayama <sbym1346@gmail.com>"]
|
authors = ["Shunsuke Shibayama <sbym1346@gmail.com>"]
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "erg_compiler"
|
name = "erg_compiler"
|
||||||
version = "0.2.8"
|
version = "0.3.0"
|
||||||
description = "Centimetre: the Erg compiler"
|
description = "Centimetre: the Erg compiler"
|
||||||
authors = ["Shunsuke Shibayama <sbym1346@gmail.com>"]
|
authors = ["Shunsuke Shibayama <sbym1346@gmail.com>"]
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "erg_parser"
|
name = "erg_parser"
|
||||||
version = "0.2.8"
|
version = "0.3.0"
|
||||||
description = "The Erg parser"
|
description = "The Erg parser"
|
||||||
authors = ["mtshiba <sbym1346@gmail.com>"]
|
authors = ["mtshiba <sbym1346@gmail.com>"]
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
|
@ -16,7 +16,7 @@ simplified_chinese = [ "erg_common/simplified_chinese" ]
|
||||||
traditional_chinese = [ "erg_common/traditional_chinese" ]
|
traditional_chinese = [ "erg_common/traditional_chinese" ]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
erg_common = { version = "0.2.8", path = "../erg_common" }
|
erg_common = { version = "0.3.0", path = "../erg_common" }
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
path = "lib.rs"
|
path = "lib.rs"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "erg_type"
|
name = "erg_type"
|
||||||
version = "0.2.8"
|
version = "0.3.0"
|
||||||
description = "APIs for Erg types"
|
description = "APIs for Erg types"
|
||||||
authors = ["Shunsuke Shibayama <sbym1346@gmail.com>"]
|
authors = ["Shunsuke Shibayama <sbym1346@gmail.com>"]
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
|
@ -18,8 +18,7 @@ simplified_chinese = [ "erg_common/simplified_chinese" ]
|
||||||
traditional_chinese = [ "erg_common/traditional_chinese" ]
|
traditional_chinese = [ "erg_common/traditional_chinese" ]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
erg_common = { version = "0.2.8", path = "../erg_common" }
|
erg_common = { version = "0.3.0", path = "../erg_common" }
|
||||||
|
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
path = "lib.rs"
|
path = "lib.rs"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue