Skip to content

Commit e5058b2

Browse files
committed
update manifests and scripts during release process
1 parent e7e8d18 commit e5058b2

File tree

15 files changed

+56
-48
lines changed

15 files changed

+56
-48
lines changed

crates/core/Cargo.toml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ version = "0.4.0"
1414
path = "lib.rs"
1515

1616
[dependencies]
17+
anyhow = { version = "1", features = ["backtrace"] }
1718
bitvec = "0.19"
1819
buffalo = "0.1"
1920
chrono = { version = "0.4", features = ["serde"] }
@@ -27,16 +28,15 @@ rand = "0.8"
2728
rand_xoshiro = "0.6"
2829
serde = { version = "1", features = ["derive"] }
2930
serde_json = "1"
30-
anyhow = { version = "1", features = ["backtrace"] }
31-
tangram_features = { path = "../features" }
32-
tangram_finite = { path = "../finite" }
33-
tangram_id = { path = "../id" }
34-
tangram_kill_chip = { path = "../kill_chip" }
35-
tangram_linear = { path = "../linear" }
36-
tangram_metrics = { path = "../metrics" }
37-
tangram_model = { path = "../model" }
38-
tangram_progress_counter = { path = "../progress_counter" }
39-
tangram_table = { path = "../table" }
40-
tangram_text = { path = "../text" }
41-
tangram_tree = { path = "../tree" }
42-
tangram_zip = { path = "../zip" }
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" }

crates/features/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ version = "0.4.0"
1414
path = "lib.rs"
1515

1616
[dependencies]
17+
anyhow = { version = "1", features = ["backtrace"] }
1718
fnv = "1"
1819
indexmap = { version = "1.6", features = ["serde-1"] }
1920
itertools = "0.10"
2021
ndarray = { version = "0.15", features = ["rayon"] }
2122
num = "0.4"
2223
serde = { version = "1", features = ["derive"] }
23-
tangram_metrics = { path = "../metrics" }
24-
tangram_table = { path = "../table" }
25-
tangram_text = { path = "../text" }
26-
anyhow = { version = "1", features = ["backtrace"] }
27-
tangram_zip = { path = "../zip" }
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" }

crates/linear/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -46,17 +46,17 @@ name = "tangram_linear_benchmark_iris"
4646
path = "benchmarks/iris.rs"
4747

4848
[dependencies]
49-
buffalo = "0.1"
49+
buffalo = { version = "0.1", features = ["ndarray_0_15"] }
5050
clap = { version = "3.0.0-beta.2", features = ["color"] }
5151
maplit = "1"
5252
ndarray = { version = "0.15", features = ["rayon"] }
5353
num = "0.4"
5454
rayon = "1.5"
5555
serde = { version = "1", features = ["derive"] }
5656
serde_json = "1"
57-
tangram_features = { path = "../features" }
58-
tangram_kill_chip = { path = "../kill_chip" }
59-
tangram_metrics = { path = "../metrics" }
60-
tangram_progress_counter = { path = "../progress_counter" }
61-
tangram_table = { path = "../table" }
62-
tangram_zip = { path = "../zip" }
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" }

crates/metrics/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ insta = "1"
2020
itertools = "0.10"
2121
ndarray = { version = "0.15", features = ["rayon"] }
2222
num = "0.4"
23-
tangram_zip = { path = "../zip" }
23+
tangram_zip = { version = "0.4", path = "../zip" }

crates/model/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ version = "0.4.0"
1414
path = "lib.rs"
1515

1616
[dependencies]
17+
anyhow = { version = "1", features = ["backtrace"] }
1718
buffalo = "0.1"
1819
fnv = "1"
1920
num = "0.4"
20-
anyhow = { version = "1", features = ["backtrace"] }
21-
tangram_linear = { path = "../linear" }
22-
tangram_text = { path = "../text" }
23-
tangram_tree = { path = "../tree" }
21+
tangram_linear = { version = "0.4", path = "../linear" }
22+
tangram_text = { version = "0.4", path = "../text" }
23+
tangram_tree = { version = "0.4", path = "../tree" }

crates/tree/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@ num = "0.4"
6161
rayon = "1.5"
6262
serde = { version = "1", features = ["derive"] }
6363
serde_json = "1"
64-
tangram_finite = { path = "../finite" }
65-
tangram_kill_chip = { path = "../kill_chip" }
66-
tangram_metrics = { path = "../metrics" }
67-
tangram_progress_counter = { path = "../progress_counter" }
68-
tangram_table = { path = "../table" }
69-
tangram_zip = { path = "../zip" }
64+
tangram_finite = { version = "0.4", path = "../finite" }
65+
tangram_kill_chip = { version = "0.4", path = "../kill_chip" }
66+
tangram_metrics = { version = "0.4", path = "../metrics" }
67+
tangram_progress_counter = { version = "0.4", path = "../progress_counter" }
68+
tangram_table = { version = "0.4", path = "../table" }
69+
tangram_zip = { version = "0.4", path = "../zip" }

languages/go/scripts/release

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
if [ ! -e dist ]; then
22
git clone git@github.com:tangramxyz/tangram-go dist
33
fi
4-
rsync --archive --delete --exclude .git --exclude .gitignore --exclude scripts --exclude dist . dist
4+
rsync --archive --delete --exclude .git --exclude .gitignore --exclude dist --exclude docs --exclude scripts . dist
55
git -C dist add --all
66
git -C dist commit
77
git -C dist push

languages/node/.npmignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/docs
2+
/node_modules

languages/node/scripts/release

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
npm run build
12
npm publish --access public

languages/python/requirements.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1+
pdoc
12
pip
2-
wheel
33
setuptools
44
setuptools-rust
5-
pdoc
5+
twine
6+
wheel

0 commit comments

Comments
 (0)