Skip to content

Commit ec17fcc

Browse files
committed
Bump to version 0.11.0
1 parent 5d0a0e5 commit ec17fcc

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tensorflow"
3-
version = "0.10.0"
3+
version = "0.11.0"
44
authors = ["Adam Crume <[email protected]>"]
55
description = "Rust language bindings for TensorFlow."
66
license = "Apache-2.0"
@@ -13,7 +13,7 @@ documentation = "https://tensorflow.github.io/rust/tensorflow"
1313
libc = "0.2.43"
1414
aligned_alloc = "0.1.3"
1515
num-complex = { version = "0.2.0", default-features = false }
16-
tensorflow-sys = { version = "0.13.0", path = "tensorflow-sys" }
16+
tensorflow-sys = { version = "0.14.0", path = "tensorflow-sys" }
1717
byteorder = "1.2.4"
1818
crc = "1.8.1"
1919

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Add this to your `Cargo.toml`:
4444

4545
```toml
4646
[dependencies]
47-
tensorflow = "0.10.0"
47+
tensorflow = "0.11.0"
4848
```
4949

5050
and this to your crate root:
@@ -75,7 +75,7 @@ To enable GPU support, use the `tensorflow_gpu` feature in your Cargo.toml:
7575

7676
```
7777
[dependencies]
78-
tensorflow = { version = "0.10.0", features = ["tensorflow_gpu"] }
78+
tensorflow = { version = "0.11.0", features = ["tensorflow_gpu"] }
7979
```
8080

8181
## Manual TensorFlow Compilation

examples/addition/model.pb

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11

22
,
3-
x Placeholder*
4-
shape:*
5-
dtype0
3+
x Placeholder*
4+
dtype0*
5+
shape:
66
,
7-
y Placeholder*
8-
shape:*
9-
dtype0
7+
y Placeholder*
8+
dtype0*
9+
shape:
1010

1111
zAddxy*
1212
T0

tensorflow-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tensorflow-sys"
3-
version = "0.13.0"
3+
version = "0.14.0"
44
license = "Apache-2.0"
55
authors = [
66
"Adam Crume <[email protected]>",

tensorflow-sys/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ To enable GPU support, use the `tensorflow_gpu` feature in your Cargo.toml:
1414

1515
```
1616
[dependencies]
17-
tensorflow-sys = { version = "0.13.0", features = ["tensorflow_gpu"] }
17+
tensorflow-sys = { version = "0.14.0", features = ["tensorflow_gpu"] }
1818
```
1919

2020
## Manual TensorFlow Compilation

0 commit comments

Comments
 (0)