Skip to content

Commit 5438211

Browse files
committed
bump version
1 parent 516ea79 commit 5438211

File tree

29 files changed

+82
-95
lines changed

29 files changed

+82
-95
lines changed

Cargo.lock

Lines changed: 17 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/build/lib.rs

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,13 @@ pub enum Arch {
66
Wasm32,
77
}
88

9-
pub const ARCHS: [Arch; 2] = [Arch::X8664, Arch::AArch64];
10-
119
impl std::str::FromStr for Arch {
1210
type Err = Error;
1311
fn from_str(s: &str) -> Result<Self, Self::Err> {
1412
match s {
1513
"x86_64" => Ok(Arch::X8664),
1614
"aarch64" => Ok(Arch::AArch64),
15+
"wasm32" => Ok(Arch::Wasm32),
1716
_ => Err(anyhow!("invalid arch")),
1817
}
1918
}
@@ -42,18 +41,6 @@ pub enum Target {
4241
Wasm32UnknownUnknown,
4342
}
4443

45-
pub const TARGETS: [Target; 9] = [
46-
Target::X8664UnknownLinuxGnu,
47-
Target::AArch64UnknownLinuxGnu,
48-
Target::X8664UnknownLinuxMusl,
49-
Target::AArch64UnknownLinuxMusl,
50-
Target::X8664AppleDarwin,
51-
Target::AArch64AppleDarwin,
52-
Target::X8664PcWindowsMsvc,
53-
Target::X8664PcWindowsGnu,
54-
Target::Wasm32UnknownUnknown,
55-
];
56-
5744
impl std::str::FromStr for Target {
5845
type Err = Error;
5946
fn from_str(s: &str) -> Result<Self, Self::Err> {

crates/cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ edition = "2018"
44
license = "MIT"
55
name = "tangram_cli"
66
publish = false
7-
version = "0.4.0"
7+
version = "0.5.0"
88

99
[[bin]]
1010
name = "tangram"

crates/core/Cargo.toml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license = "MIT"
88
name = "tangram_core"
99
publish = true
1010
repository = "https://github.com/tangramxyz/tangram"
11-
version = "0.4.0"
11+
version = "0.5.0"
1212

1313
[lib]
1414
path = "lib.rs"
@@ -28,18 +28,18 @@ rand = "0.8"
2828
rand_xoshiro = "0.6"
2929
serde = { version = "1", features = ["derive"] }
3030
serde_json = "1"
31-
tangram_features = { version = "0.4", path = "../features" }
32-
tangram_finite = { version = "0.4", path = "../finite" }
33-
tangram_id = { version = "0.4", path = "../id" }
34-
tangram_kill_chip = { version = "0.4", path = "../kill_chip" }
35-
tangram_linear = { version = "0.4", path = "../linear" }
36-
tangram_metrics = { version = "0.4", path = "../metrics" }
37-
tangram_model = { version = "0.4", path = "../model" }
38-
tangram_progress_counter = { version = "0.4", path = "../progress_counter" }
39-
tangram_table = { version = "0.4", path = "../table" }
40-
tangram_text = { version = "0.4", path = "../text" }
41-
tangram_tree = { version = "0.4", path = "../tree" }
42-
tangram_zip = { version = "0.4", path = "../zip" }
31+
tangram_features = { version = "=0.5.0", path = "../features" }
32+
tangram_finite = { version = "=0.5.0", path = "../finite" }
33+
tangram_id = { version = "=0.5.0", path = "../id" }
34+
tangram_kill_chip = { version = "=0.5.0", path = "../kill_chip" }
35+
tangram_linear = { version = "=0.5.0", path = "../linear" }
36+
tangram_metrics = { version = "=0.5.0", path = "../metrics" }
37+
tangram_model = { version = "=0.5.0", path = "../model" }
38+
tangram_progress_counter = { version = "=0.5.0", path = "../progress_counter" }
39+
tangram_table = { version = "=0.5.0", path = "../table" }
40+
tangram_text = { version = "=0.5.0", path = "../text" }
41+
tangram_tree = { version = "=0.5.0", path = "../tree" }
42+
tangram_zip = { version = "=0.5.0", path = "../zip" }
4343

4444
[target.wasm32-unknown-unknown.dependencies]
4545
getrandom = { version = "0.2", features = ["js"] }

crates/features/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license = "MIT"
88
name = "tangram_features"
99
publish = true
1010
repository = "https://github.com/tangramxyz/tangram"
11-
version = "0.4.0"
11+
version = "0.5.0"
1212

1313
[lib]
1414
path = "lib.rs"
@@ -21,7 +21,7 @@ itertools = "0.10"
2121
ndarray = { version = "0.15", features = ["rayon"] }
2222
num = "0.4"
2323
serde = { version = "1", features = ["derive"] }
24-
tangram_metrics = { version = "0.4", path = "../metrics" }
25-
tangram_table = { version = "0.4", path = "../table" }
26-
tangram_text = { version = "0.4", path = "../text" }
27-
tangram_zip = { version = "0.4", path = "../zip" }
24+
tangram_metrics = { version = "=0.5.0", path = "../metrics" }
25+
tangram_table = { version = "=0.5.0", path = "../table" }
26+
tangram_text = { version = "=0.5.0", path = "../text" }
27+
tangram_zip = { version = "=0.5.0", path = "../zip" }

crates/finite/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license = "MIT"
88
name = "tangram_finite"
99
publish = true
1010
repository = "https://github.com/tangramxyz/tangram"
11-
version = "0.4.0"
11+
version = "0.5.0"
1212

1313
[lib]
1414
path = "lib.rs"

crates/id/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license = "MIT"
88
name = "tangram_id"
99
publish = true
1010
repository = "https://github.com/tangramxyz/tangram"
11-
version = "0.4.0"
11+
version = "0.5.0"
1212

1313
[lib]
1414
path = "lib.rs"

crates/kill_chip/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license = "MIT"
88
name = "tangram_kill_chip"
99
publish = true
1010
repository = "https://github.com/tangramxyz/tangram"
11-
version = "0.4.0"
11+
version = "0.5.0"
1212

1313
[lib]
1414
path = "lib.rs"

crates/linear/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license = "MIT"
88
name = "tangram_linear"
99
publish = true
1010
repository = "https://github.com/tangramxyz/tangram"
11-
version = "0.4.0"
11+
version = "0.5.0"
1212

1313
[lib]
1414
path = "lib.rs"
@@ -54,9 +54,9 @@ num = "0.4"
5454
rayon = "1.5"
5555
serde = { version = "1", features = ["derive"] }
5656
serde_json = "1"
57-
tangram_features = { version = "0.4", path = "../features" }
58-
tangram_kill_chip = { version = "0.4", path = "../kill_chip" }
59-
tangram_metrics = { version = "0.4", path = "../metrics" }
60-
tangram_progress_counter = { version = "0.4", path = "../progress_counter" }
61-
tangram_table = { version = "0.4", path = "../table" }
62-
tangram_zip = { version = "0.4", path = "../zip" }
57+
tangram_features = { version = "=0.5.0", path = "../features" }
58+
tangram_kill_chip = { version = "=0.5.0", path = "../kill_chip" }
59+
tangram_metrics = { version = "=0.5.0", path = "../metrics" }
60+
tangram_progress_counter = { version = "=0.5.0", path = "../progress_counter" }
61+
tangram_table = { version = "=0.5.0", path = "../table" }
62+
tangram_zip = { version = "=0.5.0", path = "../zip" }

crates/metrics/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license = "MIT"
88
name = "tangram_metrics"
99
publish = true
1010
repository = "https://github.com/tangramxyz/tangram"
11-
version = "0.4.0"
11+
version = "0.5.0"
1212

1313
[lib]
1414
path = "lib.rs"
@@ -20,4 +20,4 @@ insta = "1"
2020
itertools = "0.10"
2121
ndarray = { version = "0.15", features = ["rayon"] }
2222
num = "0.4"
23-
tangram_zip = { version = "0.4", path = "../zip" }
23+
tangram_zip = { version = "=0.5.0", path = "../zip" }

0 commit comments

Comments
 (0)