From ef67b9e1720f5f27937ca91caaa3b334836da6a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl=20de=20Kok?= Date: Thu, 25 Apr 2019 17:34:07 +0200 Subject: [PATCH] Bump version to 0.5.0 --- Cargo.lock | 10 +++++----- finalfrontier-utils/Cargo.toml | 4 ++-- finalfrontier/Cargo.toml | 4 ++-- hogwild/Cargo.toml | 2 +- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d812132..26a3777 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -205,14 +205,14 @@ dependencies = [ [[package]] name = "finalfrontier" -version = "0.4.0" +version = "0.5.0" dependencies = [ "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", "conllx 0.11.1 (registry+https://github.com/rust-lang/crates.io-index)", "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", "finalfusion 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "hogwild 0.4.0", + "hogwild 0.5.0", "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "maplit 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "ndarray 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -227,12 +227,12 @@ dependencies = [ [[package]] name = "finalfrontier-utils" -version = "0.4.0" +version = "0.5.0" dependencies = [ "clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)", "conllx 0.11.1 (registry+https://github.com/rust-lang/crates.io-index)", "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "finalfrontier 0.4.0", + "finalfrontier 0.5.0", "indicatif 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "memmap 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", "num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -276,7 +276,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "hogwild" -version = "0.4.0" +version = "0.5.0" dependencies = [ "ndarray 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", ] diff --git a/finalfrontier-utils/Cargo.toml b/finalfrontier-utils/Cargo.toml index 5b4e3be..c074a99 100644 --- a/finalfrontier-utils/Cargo.toml +++ b/finalfrontier-utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "finalfrontier-utils" -version = "0.4.0" +version = "0.5.0" edition = "2018" authors = ["Daniël de Kok "] description = "Train and use word embeddings with subword representations" @@ -13,7 +13,7 @@ license = "Apache-2.0" clap = "2" conllx = "0.11" failure = "0.1" -finalfrontier = { path = "../finalfrontier", version = "0.4.0" } +finalfrontier = { path = "../finalfrontier", version = "0.5.0" } indicatif = "0.11" memmap = "0.7" num_cpus = "1" diff --git a/finalfrontier/Cargo.toml b/finalfrontier/Cargo.toml index e7d7684..6cd7df0 100644 --- a/finalfrontier/Cargo.toml +++ b/finalfrontier/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "finalfrontier" -version = "0.4.0" +version = "0.5.0" edition = "2018" authors = ["Daniël de Kok "] description = "Train/use word embeddings with subword units" @@ -15,7 +15,7 @@ conllx = "0.11" failure = "0.1" finalfusion = "0.5" fnv = "1" -hogwild = { path = "../hogwild", version = "0.4.0" } +hogwild = { path = "../hogwild", version = "0.5.0" } ndarray = "0.12" ndarray-rand = "0.9" rand = "0.6" diff --git a/hogwild/Cargo.toml b/hogwild/Cargo.toml index b675def..03694f6 100644 --- a/hogwild/Cargo.toml +++ b/hogwild/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hogwild" -version = "0.4.0" +version = "0.5.0" edition = "2018" authors = ["Daniël de Kok "] description = "Data types for hogwild SGD"