Skip to content

Commit 84c1985

Browse files
committed
Bump version to 0.3.0 🎉
1 parent 657280c commit 84c1985

File tree

9 files changed

+26
-26
lines changed

9 files changed

+26
-26
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## [Unreleased]
3+
## 0.3.0
44

55
### Added
66

Cargo.lock

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

syntaxdot-cli/Cargo.toml

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "syntaxdot-cli"
3-
version = "0.3.0-beta.2"
3+
version = "0.3.0"
44
edition = "2018"
55
authors = ["Daniël de Kok <[email protected]>"]
66
description = "Neural sequence labeler"
@@ -26,12 +26,12 @@ ndarray = "0.14"
2626
ordered-float = { version = "2", features = ["serde"] }
2727
serde_yaml = "0.8"
2828
stdinout = "0.4"
29-
syntaxdot = { path = "../syntaxdot", version = "0.3.0-beta", default-features = false }
30-
syntaxdot-encoders = { path = "../syntaxdot-encoders", version = "0.3.0-beta" }
31-
syntaxdot-summary = { path = "../syntaxdot-summary", version = "0.3.0-beta" }
32-
syntaxdot-tch-ext = { path = "../syntaxdot-tch-ext", version = "0.3.0-beta" }
33-
syntaxdot-tokenizers = { path = "../syntaxdot-tokenizers", version = "0.3.0-beta" }
34-
syntaxdot-transformers = { path = "../syntaxdot-transformers", version = "0.3.0-beta", default-features = false }
29+
syntaxdot = { path = "../syntaxdot", version = "0.3.0", default-features = false }
30+
syntaxdot-encoders = { path = "../syntaxdot-encoders", version = "0.3.0" }
31+
syntaxdot-summary = { path = "../syntaxdot-summary", version = "0.3.0" }
32+
syntaxdot-tch-ext = { path = "../syntaxdot-tch-ext", version = "0.3.0" }
33+
syntaxdot-tokenizers = { path = "../syntaxdot-tokenizers", version = "0.3.0" }
34+
syntaxdot-transformers = { path = "../syntaxdot-transformers", version = "0.3.0", default-features = false }
3535
tch = "0.4"
3636
threadpool = "1"
3737
udgraph = "0.6"

syntaxdot-encoders/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "syntaxdot-encoders"
3-
version = "0.3.0-beta.2"
3+
version = "0.3.0"
44
authors = ["Daniël de Kok <[email protected]>"]
55
edition = "2018"
66
description = "Encoders for linguistic features"

syntaxdot-summary/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "syntaxdot-summary"
3-
version = "0.3.0-beta.2"
3+
version = "0.3.0"
44
authors = ["Daniël de Kok <[email protected]>"]
55
edition = "2018"
66
description = "TensorBoard summary writer"

syntaxdot-tch-ext/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "syntaxdot-tch-ext"
3-
version = "0.3.0-beta.2"
3+
version = "0.3.0"
44
authors = ["Daniël de Kok <[email protected]>"]
55
edition = "2018"
66
description = "tch path extension for partitioning parameters in groups"

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.3.0-beta.2"
3+
version = "0.3.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.3.0-beta.2"
3+
version = "0.3.0"
44
authors = ["Daniël de Kok <[email protected]>"]
55
edition = "2018"
66
description = "Transformer architectures, such as BERT"
@@ -11,7 +11,7 @@ license = "BlueOak-1.0.0"
1111

1212
[dependencies]
1313
serde = { version = "1", features = ["derive"] }
14-
syntaxdot-tch-ext = { path = "../syntaxdot-tch-ext", version = "0.3.0-beta" }
14+
syntaxdot-tch-ext = { path = "../syntaxdot-tch-ext", version = "0.3.0" }
1515
tch = "0.4"
1616
thiserror = "1"
1717

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.3.0-beta.2"
3+
version = "0.3.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.3.0-beta" }
23-
syntaxdot-tch-ext = { path = "../syntaxdot-tch-ext", version = "0.3.0-beta" }
24-
syntaxdot-tokenizers = { path = "../syntaxdot-tokenizers", default-features = false, version = "0.3.0-beta" }
25-
syntaxdot-transformers = { path = "../syntaxdot-transformers", default-features = false, version = "0.3.0-beta" }
22+
syntaxdot-encoders = { path = "../syntaxdot-encoders", version = "0.3.0" }
23+
syntaxdot-tch-ext = { path = "../syntaxdot-tch-ext", version = "0.3.0" }
24+
syntaxdot-tokenizers = { path = "../syntaxdot-tokenizers", default-features = false, version = "0.3.0" }
25+
syntaxdot-transformers = { path = "../syntaxdot-transformers", default-features = false, version = "0.3.0" }
2626
tch = "0.4"
2727
thiserror = "1"
2828
toml = "0.5"

0 commit comments

Comments
 (0)