Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tensorflow"
version = "0.19.0"
version = "0.19.1"
authors = ["Adam Crume <[email protected]>"]
description = "Rust language bindings for TensorFlow."
license = "Apache-2.0"
Expand All @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions tensorflow-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tensorflow-sys"
version = "0.22.0"
version = "0.22.1"
license = "Apache-2.0"
authors = [
"Adam Crume <[email protected]>",
Expand Down Expand Up @@ -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 = []
Expand Down
2 changes: 1 addition & 1 deletion tensorflow-sys/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down