From a7f5fad9d419dd8c1cb8a90b06ccbb37e8a5ec67 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Danie=CC=88l=20de=20Kok?= Date: Sun, 15 Aug 2021 11:45:01 +0200 Subject: [PATCH] Bump version to 0.4.1. --- CHANGELOG.md | 7 +++++++ Cargo.lock | 4 ++-- syntaxdot-cli/Cargo.toml | 4 ++-- syntaxdot/Cargo.toml | 2 +- 4 files changed, 12 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1bd51de..1b07b23 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 0.4.1 + +### Fixed + +- Update to rand 0.8 in the syntaxdot crate. This voids a dependency on both + rand 0.7 and 0.8. + ## 0.4.0 ### Added diff --git a/Cargo.lock b/Cargo.lock index 5052fb1..358c235 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1103,7 +1103,7 @@ dependencies = [ [[package]] name = "syntaxdot" -version = "0.4.0" +version = "0.4.1" dependencies = [ "approx", "conllu", @@ -1130,7 +1130,7 @@ dependencies = [ [[package]] name = "syntaxdot-cli" -version = "0.4.0" +version = "0.4.1" dependencies = [ "anyhow", "bytecount", diff --git a/syntaxdot-cli/Cargo.toml b/syntaxdot-cli/Cargo.toml index 2c9b649..6ee2ee5 100644 --- a/syntaxdot-cli/Cargo.toml +++ b/syntaxdot-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "syntaxdot-cli" -version = "0.4.0" +version = "0.4.1" edition = "2018" authors = ["Daniël de Kok "] description = "Neural sequence labeler" @@ -27,7 +27,7 @@ ordered-float = { version = "2", features = ["serde"] } rayon = "1" serde_yaml = "0.8" stdinout = "0.4" -syntaxdot = { path = "../syntaxdot", version = "0.4.0", default-features = false } +syntaxdot = { path = "../syntaxdot", version = "0.4.1", default-features = false } syntaxdot-encoders = { path = "../syntaxdot-encoders", version = "0.4.0" } syntaxdot-summary = { path = "../syntaxdot-summary", version = "0.4.0" } syntaxdot-tch-ext = { path = "../syntaxdot-tch-ext", version = "0.4.0" } diff --git a/syntaxdot/Cargo.toml b/syntaxdot/Cargo.toml index 76200a2..dbac468 100644 --- a/syntaxdot/Cargo.toml +++ b/syntaxdot/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "syntaxdot" -version = "0.4.0" +version = "0.4.1" edition = "2018" authors = ["Daniël de Kok "] description = "Neural sequence labeler"