Skip to content

Commit

Permalink
Bump version to 0.21.0
Browse files Browse the repository at this point in the history
  • Loading branch information
adamcrume committed Aug 15, 2023
1 parent 8202fc2 commit 62a3019
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
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.20.0"
version = "0.21.0"
authors = ["Adam Crume <acrume@google.com>"]
description = "Rust language bindings for TensorFlow."
license = "Apache-2.0"
Expand All @@ -23,7 +23,7 @@ features = ["private-docs-rs", "tensorflow_unstable", "ndarray", "eager", "exper
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.23.0", path = "tensorflow-sys", optional = true }
tensorflow-sys = { version = "0.24.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"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Add this to your `Cargo.toml`:

```toml
[dependencies]
tensorflow = "0.20.0"
tensorflow = "0.21.0"
```

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

```
[dependencies]
tensorflow = { version = "0.20.0", features = ["tensorflow_gpu"] }
tensorflow = { version = "0.21.0", features = ["tensorflow_gpu"] }
```

## Manual TensorFlow Compilation
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.23.0"
version = "0.24.0"
license = "Apache-2.0"
authors = [
"Adam Crume <acrume@google.com>",
Expand Down
2 changes: 1 addition & 1 deletion tensorflow-sys/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ To enable GPU support, use the `tensorflow_gpu` feature in your Cargo.toml:

```
[dependencies]
tensorflow-sys = { version = "0.23.0", features = ["tensorflow_gpu"] }
tensorflow-sys = { version = "0.24.0", features = ["tensorflow_gpu"] }
```

## Manual TensorFlow Compilation
Expand Down

0 comments on commit 62a3019

Please sign in to comment.