Skip to content

Commit

Permalink
Bump version to 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
danieldk committed Feb 5, 2021
1 parent 2059314 commit 340cafe
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 22 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions syntaxdot-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "syntaxdot-cli"
version = "0.2.0"
version = "0.2.1"
edition = "2018"
authors = ["Daniël de Kok <[email protected]>"]
description = "Neural sequence labeler"
Expand All @@ -22,11 +22,11 @@ itertools = "0.9"
ordered-float = { version = "1", features = ["serde"] }
serde_yaml = "0.8"
stdinout = "0.4"
syntaxdot = { path = "../syntaxdot", version = "0.2", default-features = false }
syntaxdot-encoders = { path = "../syntaxdot-encoders", version = "0.2" }
syntaxdot-tch-ext = { path = "../syntaxdot-tch-ext", version = "0.2" }
syntaxdot-tokenizers = { path = "../syntaxdot-tokenizers", version = "0.2" }
syntaxdot-transformers = { path = "../syntaxdot-transformers", version = "0.2", default-features = false }
syntaxdot = { path = "../syntaxdot", version = "0.2.1", default-features = false }
syntaxdot-encoders = { path = "../syntaxdot-encoders", version = "0.2.1" }
syntaxdot-tch-ext = { path = "../syntaxdot-tch-ext", version = "0.2.1" }
syntaxdot-tokenizers = { path = "../syntaxdot-tokenizers", version = "0.2.1" }
syntaxdot-transformers = { path = "../syntaxdot-transformers", version = "0.2.1", default-features = false }
tfrecord = { version = "0.4", features = ["summary"], optional = true }
tch = "0.3"
threadpool = "1"
Expand Down
2 changes: 1 addition & 1 deletion syntaxdot-encoders/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "syntaxdot-encoders"
version = "0.2.0"
version = "0.2.1"
authors = ["Daniël de Kok <[email protected]>"]
edition = "2018"
description = "Encoders for linguistic features"
Expand Down
2 changes: 1 addition & 1 deletion syntaxdot-tch-ext/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "syntaxdot-tch-ext"
version = "0.2.0"
version = "0.2.1"
authors = ["Daniël de Kok <[email protected]>"]
edition = "2018"
description = "tch path extension for partitioning parameters in groups"
Expand Down
2 changes: 1 addition & 1 deletion syntaxdot-tokenizers/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "syntaxdot-tokenizers"
version = "0.2.0"
version = "0.2.1"
authors = ["Daniël de Kok <[email protected]>"]
edition = "2018"
description = "Subword tokenizers"
Expand Down
4 changes: 2 additions & 2 deletions syntaxdot-transformers/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "syntaxdot-transformers"
version = "0.2.0"
version = "0.2.1"
authors = ["Daniël de Kok <[email protected]>"]
edition = "2018"
description = "Transformer architectures, such as BERT"
Expand All @@ -12,7 +12,7 @@ license = "BlueOak-1.0.0"
[dependencies]
hdf5 = { version = "0.7", optional = true }
serde = { version = "1", features = ["derive"] }
syntaxdot-tch-ext = { path = "../syntaxdot-tch-ext", version = "0.2" }
syntaxdot-tch-ext = { path = "../syntaxdot-tch-ext", version = "0.2.1" }
tch = "0.3"
thiserror = "1"

Expand Down
10 changes: 5 additions & 5 deletions syntaxdot/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "syntaxdot"
version = "0.2.0"
version = "0.2.1"
edition = "2018"
authors = ["Daniël de Kok <[email protected]>"]
description = "Neural sequence labeler"
Expand All @@ -19,10 +19,10 @@ rand = "0.7"
rand_xorshift = "0.2"
serde = { version = "1", features = [ "derive" ] }
serde_json = "1"
syntaxdot-encoders = { path = "../syntaxdot-encoders", version = "0.2" }
syntaxdot-tch-ext = { path = "../syntaxdot-tch-ext", version = "0.2" }
syntaxdot-tokenizers = { path = "../syntaxdot-tokenizers", default-features = false, version = "0.2" }
syntaxdot-transformers = { path = "../syntaxdot-transformers", default-features = false, version = "0.2" }
syntaxdot-encoders = { path = "../syntaxdot-encoders", version = "0.2.1" }
syntaxdot-tch-ext = { path = "../syntaxdot-tch-ext", version = "0.2.1" }
syntaxdot-tokenizers = { path = "../syntaxdot-tokenizers", default-features = false, version = "0.2.1" }
syntaxdot-transformers = { path = "../syntaxdot-transformers", default-features = false, version = "0.2.1" }
tch = "0.3"
thiserror = "1"
toml = "0.5"
Expand Down

0 comments on commit 340cafe

Please sign in to comment.