Skip to content

Commit 67fae7d

Browse files
committed
Bump to version 0.15.0
1 parent f8ef572 commit 67fae7d

File tree

6 files changed

+25
-9
lines changed

6 files changed

+25
-9
lines changed

CHANGELOG.md

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

3+
## Release 0.15.0
4+
5+
### Additions
6+
7+
- Add generated code for all standard ops
8+
- Currently guarded by experimental_training feature
9+
- Add RecordReader for TFRecords
10+
- Add support for creating saved models
11+
- Document that BFloat16 is not an IEEE-754 16-bit float
12+
- Implement Send and Sync for Status
13+
- Add Tensor::get and Tensor::set
14+
15+
### Changes
16+
17+
- Use std::alloc instead of aligned_alloc
18+
319
## Release 0.14.0
420

521
### Additions

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.14.0"
3+
version = "0.15.0"
44
authors = ["Adam Crume <[email protected]>"]
55
description = "Rust language bindings for TensorFlow."
66
license = "Apache-2.0"
@@ -14,7 +14,7 @@ edition = "2018"
1414
libc = "0.2.62"
1515
num-complex = { version = "0.2.3", default-features = false }
1616
tensorflow-internal-macros = { version = "=0.0.1", path = "tensorflow-internal-macros" }
17-
tensorflow-sys = { version = "0.17.0", path = "tensorflow-sys" }
17+
tensorflow-sys = { version = "0.18.0", path = "tensorflow-sys" }
1818
byteorder = "1.3.2"
1919
crc = "1.8.1"
2020
half = "1.3.0"

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.14.0"
47+
tensorflow = "0.15.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.14.0", features = ["tensorflow_gpu"] }
78+
tensorflow = { version = "0.15.0", features = ["tensorflow_gpu"] }
7979
```
8080

8181
## Manual TensorFlow Compilation

examples/addition/model.pb

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

22
,
3-
x Placeholder*
4-
shape:*
5-
dtype0
3+
x Placeholder*
4+
dtype0*
5+
shape:
66
,
77
y Placeholder*
88
shape:*

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

2020
## Manual TensorFlow Compilation

0 commit comments

Comments
 (0)