From b4aef8336806754638f28ca4ea6c1b71130d4bfe Mon Sep 17 00:00:00 2001 From: Adam Crume Date: Sun, 12 Feb 2023 12:54:14 -0800 Subject: [PATCH 1/2] Update changelog --- CHANGELOG.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ed2823c7d7..d23e8c2cbe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## Release 0.20.0 + +### Additions + +- Implemented Send and Sync for SessionRunArgs + +### Changes + +- Migrated from random to rand +- Upgraded to TensorFlow 2.11.0 + +### Fixes + +- Removed binaries from the repository + ## Release 0.19.0 ### Additions From c2b39298840b1f2daa2074221fc724e3095717da Mon Sep 17 00:00:00 2001 From: Adam Crume Date: Sun, 12 Feb 2023 17:39:03 -0800 Subject: [PATCH 2/2] Bump version to 0.20.0 --- Cargo.toml | 6 +++--- README.md | 4 ++-- tensorflow-sys-runtime/Cargo.toml | 2 +- tensorflow-sys/Cargo.toml | 2 +- tensorflow-sys/README.md | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ec65333adf..6fc2182ee8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tensorflow" -version = "0.19.1" +version = "0.20.0" authors = ["Adam Crume "] description = "Rust language bindings for TensorFlow." license = "Apache-2.0" @@ -23,8 +23,8 @@ features = ["private-docs-rs", "tensorflow_unstable", "ndarray", "eager"] libc = "0.2.132" num-complex = { version = "0.4.2", default-features = false } tensorflow-internal-macros = { version = "=0.0.3", path = "tensorflow-internal-macros" } -tensorflow-sys = { version = "0.22.1", path = "tensorflow-sys", optional = true } -tensorflow-sys-runtime = { version = "0.1.0", path = "tensorflow-sys-runtime", optional = true } +tensorflow-sys = { version = "0.23.0", path = "tensorflow-sys", optional = true } +tensorflow-sys-runtime = { version = "0.2.0", path = "tensorflow-sys-runtime", optional = true } byteorder = "1.4.3" crc = "3.0.0" half = "2.1.0" diff --git a/README.md b/README.md index 6c21985563..b7fe08e797 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -tensorflow = "0.19.1" +tensorflow = "0.20.0" ``` 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.1", features = ["tensorflow_gpu"] } +tensorflow = { version = "0.20.0", features = ["tensorflow_gpu"] } ``` ## Manual TensorFlow Compilation diff --git a/tensorflow-sys-runtime/Cargo.toml b/tensorflow-sys-runtime/Cargo.toml index bd37ec3393..b5c3bcf83b 100644 --- a/tensorflow-sys-runtime/Cargo.toml +++ b/tensorflow-sys-runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tensorflow-sys-runtime" -version = "0.1.0" +version = "0.2.0" authors = ["Brian Jones "] license = "Apache-2.0" keywords = ["TensorFlow", "runtime bindings"] diff --git a/tensorflow-sys/Cargo.toml b/tensorflow-sys/Cargo.toml index dd52277de1..9e4ff2d280 100644 --- a/tensorflow-sys/Cargo.toml +++ b/tensorflow-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tensorflow-sys" -version = "0.22.1" +version = "0.23.0" license = "Apache-2.0" authors = [ "Adam Crume ", diff --git a/tensorflow-sys/README.md b/tensorflow-sys/README.md index 8b28a6ca1d..680c966650 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.1", features = ["tensorflow_gpu"] } +tensorflow-sys = { version = "0.23.0", features = ["tensorflow_gpu"] } ``` ## Manual TensorFlow Compilation