Skip to content

Commit

Permalink
Bump version to 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
danieldk committed Apr 24, 2023
1 parent 38cc17c commit 5539744
Show file tree
Hide file tree
Showing 8 changed files with 25 additions and 25 deletions.
14 changes: 7 additions & 7 deletions Cargo.lock

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

14 changes: 7 additions & 7 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.5.0-beta.2"
version = "0.5.0"
edition = "2018"
authors = ["Daniël de Kok <[email protected]>"]
description = "Neural sequence labeler"
Expand Down Expand Up @@ -28,11 +28,11 @@ ordered-float = { version = "2", features = ["serde"] }
rayon = "1"
serde_yaml = "0.8"
stdinout = "0.4"
syntaxdot = { path = "../syntaxdot", version = "0.5.0-beta.2", default-features = false }
syntaxdot-encoders = { path = "../syntaxdot-encoders", version = "0.5.0-beta.2" }
syntaxdot-summary = { path = "../syntaxdot-summary", version = "0.5.0-beta.2" }
syntaxdot-tch-ext = { path = "../syntaxdot-tch-ext", version = "0.5.0-beta.2" }
syntaxdot-tokenizers = { path = "../syntaxdot-tokenizers", version = "0.5.0-beta.2" }
syntaxdot-transformers = { path = "../syntaxdot-transformers", version = "0.5.0-beta.2", default-features = false }
syntaxdot = { path = "../syntaxdot", version = "0.5.0", default-features = false }
syntaxdot-encoders = { path = "../syntaxdot-encoders", version = "0.5.0" }
syntaxdot-summary = { path = "../syntaxdot-summary", version = "0.5.0" }
syntaxdot-tch-ext = { path = "../syntaxdot-tch-ext", version = "0.5.0" }
syntaxdot-tokenizers = { path = "../syntaxdot-tokenizers", version = "0.5.0" }
syntaxdot-transformers = { path = "../syntaxdot-transformers", version = "0.5.0", default-features = false }
tch = { version = "0.11", default-features = false }
udgraph = "0.8"
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.5.0-beta.2"
version = "0.5.0"
authors = ["Daniël de Kok <[email protected]>"]
edition = "2018"
description = "Encoders for linguistic features"
Expand Down
2 changes: 1 addition & 1 deletion syntaxdot-summary/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "syntaxdot-summary"
version = "0.5.0-beta.2"
version = "0.5.0"
authors = ["Daniël de Kok <[email protected]>"]
edition = "2018"
description = "TensorBoard summary writer"
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.5.0-beta.2"
version = "0.5.0"
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.5.0-beta.2"
version = "0.5.0"
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.5.0-beta.2"
version = "0.5.0"
authors = ["Daniël de Kok <[email protected]>"]
edition = "2018"
description = "Transformer architectures, such as BERT"
Expand All @@ -11,7 +11,7 @@ license = "MIT OR Apache-2.0"

[dependencies]
serde = { version = "1", features = ["derive"] }
syntaxdot-tch-ext = { path = "../syntaxdot-tch-ext", version = "0.5.0-beta.2" }
syntaxdot-tch-ext = { path = "../syntaxdot-tch-ext", version = "0.5.0" }
tch = { version = "0.11", default-features = false }
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.5.0-beta.2"
version = "0.5.0"
edition = "2018"
authors = ["Daniël de Kok <[email protected]>"]
description = "Neural sequence labeler"
Expand All @@ -19,10 +19,10 @@ rand = "0.8"
rand_xorshift = "0.3"
serde = { version = "1", features = [ "derive" ] }
serde_json = "1"
syntaxdot-encoders = { path = "../syntaxdot-encoders", version = "0.5.0-beta.2" }
syntaxdot-tch-ext = { path = "../syntaxdot-tch-ext", version = "0.5.0-beta.2" }
syntaxdot-tokenizers = { path = "../syntaxdot-tokenizers", default-features = false, version = "0.5.0-beta.2" }
syntaxdot-transformers = { path = "../syntaxdot-transformers", default-features = false, version = "0.5.0-beta.2" }
syntaxdot-encoders = { path = "../syntaxdot-encoders", version = "0.5.0" }
syntaxdot-tch-ext = { path = "../syntaxdot-tch-ext", version = "0.5.0" }
syntaxdot-tokenizers = { path = "../syntaxdot-tokenizers", default-features = false, version = "0.5.0" }
syntaxdot-transformers = { path = "../syntaxdot-transformers", default-features = false, version = "0.5.0" }
tch = { version = "0.11", default-features = false }
thiserror = "1"
toml = "0.5"
Expand Down

0 comments on commit 5539744

Please sign in to comment.