diff --git a/Cargo.toml b/Cargo.toml index b867ef287c..84f9843ca1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tensorflow" -version = "0.19.0" +version = "0.19.1" authors = ["Adam Crume "] description = "Rust language bindings for TensorFlow." license = "Apache-2.0" @@ -22,7 +22,7 @@ features = ["private-docs-rs", "tensorflow_unstable", "ndarray", "eager"] libc = "0.2.98" num-complex = { version = "0.4.0", default-features = false } tensorflow-internal-macros = { version = "=0.0.3", path = "tensorflow-internal-macros" } -tensorflow-sys = { version = "0.22.0", path = "tensorflow-sys" } +tensorflow-sys = { version = "0.22.1", path = "tensorflow-sys" } byteorder = "1.4.3" crc = "2.0.0" half = "1.7.1" diff --git a/README.md b/README.md index f387893be4..6c21985563 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -tensorflow = "0.19.0" +tensorflow = "0.19.1" ``` and this to your crate root: @@ -100,7 +100,7 @@ To enable GPU support, use the `tensorflow_gpu` feature in your Cargo.toml: ``` [dependencies] -tensorflow = { version = "0.19.0", features = ["tensorflow_gpu"] } +tensorflow = { version = "0.19.1", features = ["tensorflow_gpu"] } ``` ## Manual TensorFlow Compilation diff --git a/tensorflow-sys/Cargo.toml b/tensorflow-sys/Cargo.toml index 552e31b337..2abcb12ef3 100644 --- a/tensorflow-sys/Cargo.toml +++ b/tensorflow-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tensorflow-sys" -version = "0.22.0" +version = "0.22.1" license = "Apache-2.0" authors = [ "Adam Crume ", @@ -31,7 +31,7 @@ flate2 = "1.0.20" pkg-config = "0.3.19" semver = "1.0.3" tar = "0.4.35" -zip = "0.5.13" +zip = "0.6.2" [features] tensorflow_gpu = [] diff --git a/tensorflow-sys/README.md b/tensorflow-sys/README.md index 20dfa51ec6..8b28a6ca1d 100644 --- a/tensorflow-sys/README.md +++ b/tensorflow-sys/README.md @@ -14,7 +14,7 @@ To enable GPU support, use the `tensorflow_gpu` feature in your Cargo.toml: ``` [dependencies] -tensorflow-sys = { version = "0.22.0", features = ["tensorflow_gpu"] } +tensorflow-sys = { version = "0.22.1", features = ["tensorflow_gpu"] } ``` ## Manual TensorFlow Compilation