Skip to content

Commit f7214cf

Browse files
authored
Merge pull request #397 from adamcrume/master
Bump to version 0.20.0
2 parents 08bd27e + c2b3929 commit f7214cf

File tree

6 files changed

+23
-8
lines changed

6 files changed

+23
-8
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Changelog
22

3+
## Release 0.20.0
4+
5+
### Additions
6+
7+
- Implemented Send and Sync for SessionRunArgs
8+
9+
### Changes
10+
11+
- Migrated from random to rand
12+
- Upgraded to TensorFlow 2.11.0
13+
14+
### Fixes
15+
16+
- Removed binaries from the repository
17+
318
## Release 0.19.0
419

520
### Additions

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tensorflow"
3-
version = "0.19.1"
3+
version = "0.20.0"
44
authors = ["Adam Crume <[email protected]>"]
55
description = "Rust language bindings for TensorFlow."
66
license = "Apache-2.0"
@@ -23,8 +23,8 @@ features = ["private-docs-rs", "tensorflow_unstable", "ndarray", "eager"]
2323
libc = "0.2.132"
2424
num-complex = { version = "0.4.2", default-features = false }
2525
tensorflow-internal-macros = { version = "=0.0.3", path = "tensorflow-internal-macros" }
26-
tensorflow-sys = { version = "0.22.1", path = "tensorflow-sys", optional = true }
27-
tensorflow-sys-runtime = { version = "0.1.0", path = "tensorflow-sys-runtime", optional = true }
26+
tensorflow-sys = { version = "0.23.0", path = "tensorflow-sys", optional = true }
27+
tensorflow-sys-runtime = { version = "0.2.0", path = "tensorflow-sys-runtime", optional = true }
2828
byteorder = "1.4.3"
2929
crc = "3.0.0"
3030
half = "2.1.0"

README.md

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

4646
```toml
4747
[dependencies]
48-
tensorflow = "0.19.1"
48+
tensorflow = "0.20.0"
4949
```
5050

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

101101
```
102102
[dependencies]
103-
tensorflow = { version = "0.19.1", features = ["tensorflow_gpu"] }
103+
tensorflow = { version = "0.20.0", features = ["tensorflow_gpu"] }
104104
```
105105

106106
## Manual TensorFlow Compilation

tensorflow-sys-runtime/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-runtime"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ["Brian Jones <[email protected]>"]
55
license = "Apache-2.0"
66
keywords = ["TensorFlow", "runtime bindings"]

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.22.1"
3+
version = "0.23.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.22.1", features = ["tensorflow_gpu"] }
17+
tensorflow-sys = { version = "0.23.0", features = ["tensorflow_gpu"] }
1818
```
1919

2020
## Manual TensorFlow Compilation

0 commit comments

Comments
 (0)