Skip to content

Commit 89f603a

Browse files
committed
Bump version to 0.2.0
1 parent e209da7 commit 89f603a

File tree

7 files changed

+28
-23
lines changed

7 files changed

+28
-23
lines changed

Cargo.lock

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

syntaxdot-cli/Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "syntaxdot-cli"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2018"
55
authors = ["Daniël de Kok <[email protected]>"]
66
description = "Neural sequence labeler"
@@ -22,11 +22,11 @@ itertools = "0.9"
2222
ordered-float = { version = "1", features = ["serde"] }
2323
serde_yaml = "0.8"
2424
stdinout = "0.4"
25-
syntaxdot = { path = "../syntaxdot", version = "0.1", default-features = false }
26-
syntaxdot-encoders = { path = "../syntaxdot-encoders", version = "0.1" }
27-
syntaxdot-tch-ext = { path = "../syntaxdot-tch-ext" }
28-
syntaxdot-tokenizers = { path = "../syntaxdot-tokenizers", version = "0.1" }
29-
syntaxdot-transformers = { path = "../syntaxdot-transformers", version = "0.1", default-features = false }
25+
syntaxdot = { path = "../syntaxdot", version = "0.2", default-features = false }
26+
syntaxdot-encoders = { path = "../syntaxdot-encoders", version = "0.2" }
27+
syntaxdot-tch-ext = { path = "../syntaxdot-tch-ext", version = "0.2" }
28+
syntaxdot-tokenizers = { path = "../syntaxdot-tokenizers", version = "0.2" }
29+
syntaxdot-transformers = { path = "../syntaxdot-transformers", version = "0.2", default-features = false }
3030
tfrecord = { version = "0.4", features = ["summary"], optional = true }
3131
tch = "0.3"
3232
threadpool = "1"

syntaxdot-encoders/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "syntaxdot-encoders"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ["Daniël de Kok <[email protected]>"]
55
edition = "2018"
66
description = "Encoders for linguistic features"
@@ -17,6 +17,6 @@ ohnomore = "0.2.2"
1717
ordered-float = "1"
1818
petgraph = "0.5"
1919
seqalign = "0.2"
20-
serde = "1"
20+
serde = { version = "1", features = ["derive"] }
2121
serde_derive = "1"
2222
thiserror = "1"

syntaxdot-tch-ext/Cargo.toml

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
[package]
22
name = "syntaxdot-tch-ext"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ["Daniël de Kok <[email protected]>"]
55
edition = "2018"
6+
description = "tch path extension for partitioning parameters in groups"
7+
homepage = "https://github.com/tensordot/syntaxdot"
8+
repository = "https://github.com/tensordot/syntaxdot.git"
9+
documentation = "https://docs.rs/syntaxdot-tch-ext/"
10+
license = "BlueOak-1.0.0"
611

712
[dependencies]
813
itertools = "0.9"

syntaxdot-tokenizers/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "syntaxdot-tokenizers"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ["Daniël de Kok <[email protected]>"]
55
edition = "2018"
66
description = "Subword tokenizers"

syntaxdot-transformers/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "syntaxdot-transformers"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ["Daniël de Kok <[email protected]>"]
55
edition = "2018"
66
description = "Transformer architectures, such as BERT"
@@ -12,7 +12,7 @@ license = "BlueOak-1.0.0"
1212
[dependencies]
1313
hdf5 = { version = "0.7", optional = true }
1414
serde = { version = "1", features = ["derive"] }
15-
syntaxdot-tch-ext = { path = "../syntaxdot-tch-ext" }
15+
syntaxdot-tch-ext = { path = "../syntaxdot-tch-ext", version = "0.2" }
1616
tch = "0.3"
1717
thiserror = "1"
1818

syntaxdot/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "syntaxdot"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2018"
55
authors = ["Daniël de Kok <[email protected]>"]
66
description = "Neural sequence labeler"
@@ -19,10 +19,10 @@ rand = "0.7"
1919
rand_xorshift = "0.2"
2020
serde = { version = "1", features = [ "derive" ] }
2121
serde_json = "1"
22-
syntaxdot-encoders = { path = "../syntaxdot-encoders", version = "0.1" }
23-
syntaxdot-tch-ext = { path = "../syntaxdot-tch-ext" }
24-
syntaxdot-tokenizers = { path = "../syntaxdot-tokenizers", default-features = false, version = "0.1" }
25-
syntaxdot-transformers = { path = "../syntaxdot-transformers", default-features = false, version = "0.1" }
22+
syntaxdot-encoders = { path = "../syntaxdot-encoders", version = "0.2" }
23+
syntaxdot-tch-ext = { path = "../syntaxdot-tch-ext", version = "0.2" }
24+
syntaxdot-tokenizers = { path = "../syntaxdot-tokenizers", default-features = false, version = "0.2" }
25+
syntaxdot-transformers = { path = "../syntaxdot-transformers", default-features = false, version = "0.2" }
2626
tch = "0.3"
2727
thiserror = "1"
2828
toml = "0.5"

0 commit comments

Comments
 (0)