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

[dev-dependencies]
random = "0.12"
Expand Down
2 changes: 1 addition & 1 deletion tensorflow-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tensorflow-sys"
version = "0.7.0"
version = "0.8.0"
license = "Apache-2.0"
authors = [
"Adam Crume <[email protected]>",
Expand Down
4 changes: 2 additions & 2 deletions tensorflow-sys/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ const LIBRARY: &'static str = "tensorflow";
const REPOSITORY: &'static str = "https://github.com/tensorflow/tensorflow.git";
const TARGET: &'static str = "tensorflow:libtensorflow.so";
// `VERSION` and `TAG` are separate because the tag is not always `'v' + VERSION`.
const VERSION: &'static str = "1.0.0";
const TAG: &'static str = "v1.0.0";
const VERSION: &'static str = "1.1.0";
const TAG: &'static str = "v1.1.0";
const MIN_BAZEL: &'static str = "0.3.2";

macro_rules! get(($name:expr) => (ok!(env::var($name))));
Expand Down
Loading