Skip to content

Commit 28647b6

Browse files
authored
Merge pull request #82 from nbigaouette-eai/tensorflow_v1.1.0
Bump to tensorflow v1.1.0
2 parents d86cb30 + bbd8be3 commit 28647b6

File tree

4 files changed

+248
-20
lines changed

4 files changed

+248
-20
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.3.1"
3+
version = "0.4.0"
44
authors = ["Adam Crume <[email protected]>"]
55
description = "Rust language bindings for TensorFlow."
66
license = "Apache-2.0"
@@ -12,7 +12,7 @@ documentation = "https://tensorflow.github.io/rust/tensorflow"
1212
[dependencies]
1313
libc = "0.2"
1414
num-complex = { version = "0.1.35", default-features = false }
15-
tensorflow-sys = { version = "0.7.0", path = "tensorflow-sys" }
15+
tensorflow-sys = { version = "0.8.0", path = "tensorflow-sys" }
1616

1717
[dev-dependencies]
1818
random = "0.12"

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.7.0"
3+
version = "0.8.0"
44
license = "Apache-2.0"
55
authors = [
66
"Adam Crume <[email protected]>",

tensorflow-sys/build.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ const LIBRARY: &'static str = "tensorflow";
2222
const REPOSITORY: &'static str = "https://github.com/tensorflow/tensorflow.git";
2323
const TARGET: &'static str = "tensorflow:libtensorflow.so";
2424
// `VERSION` and `TAG` are separate because the tag is not always `'v' + VERSION`.
25-
const VERSION: &'static str = "1.0.0";
26-
const TAG: &'static str = "v1.0.0";
25+
const VERSION: &'static str = "1.1.0";
26+
const TAG: &'static str = "v1.1.0";
2727
const MIN_BAZEL: &'static str = "0.3.2";
2828

2929
macro_rules! get(($name:expr) => (ok!(env::var($name))));

0 commit comments

Comments
 (0)