Skip to content

Commit 6b72bd9

Browse files
bump to version 1.1.0 in README.md Gradle examples
1 parent e9c854f commit 6b72bd9

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

README.md

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ systems with no GPU support, you should add the following dependencies:
8282
```
8383
Or Gradle:
8484
```groovy
85-
def tfVersion = '1.0.0'
85+
def tfVersion = '1.1.0'
8686
implementation "org.tensorflow:tensorflow-core-api:$tfVersion"
8787
implementation "org.tensorflow:tensorflow-core-native:$tfVersion:linux-x86_64"
8888
```
@@ -116,7 +116,7 @@ native dependencies as follows:
116116
```
117117
Or Gradle:
118118
```groovy
119-
def tfVersion = '1.0.0'
119+
def tfVersion = '1.1.0'
120120
implementation "org.tensorflow:tensorflow-core-api:$tfVersion"
121121
implementation "org.tensorflow:tensorflow-core-native:$tfVersion:linux-x86_64-gpu"
122122
implementation "org.tensorflow:tensorflow-core-native:$tfVersion:macosx-arm64"
@@ -148,7 +148,7 @@ simply add this dependency to your application:
148148
```
149149
Or Gradle:
150150
```groovy
151-
implementation "org.tensorflow:tensorflow-core-platform:1.0.0"
151+
implementation "org.tensorflow:tensorflow-core-platform:1.1.0"
152152
```
153153

154154
Be aware though that the builds of TensorFlow are quite voluminous and including too many native dependencies may
@@ -160,7 +160,7 @@ the conventions established on this page:
160160
### Snapshots
161161

162162
Snapshots of TensorFlow Java artifacts are automatically distributed after each update in the code. To use them, you need
163-
to add Sonatype OSS repository in your pom.xml, like the following
163+
to add Sonatype OSS repository in your `pom.xml`, like the following
164164

165165
```xml
166166
<repositories>
@@ -201,21 +201,21 @@ dependencies {
201201
This table shows the mapping between TensorFlow, TensorFlow Java and minimum supported Java versions.
202202

203203
| TensorFlow Java Version | TensorFlow Version | Minimum Java Version |
204-
|-------------------------|--------------------| --------------- |
205-
| 0.2.0 | 2.3.1 | 8 |
206-
| 0.3.0 | 2.4.1 | 8 |
207-
| 0.3.1 | 2.4.1 | 8 |
208-
| 0.3.2 | 2.4.1 | 8 |
209-
| 0.3.3 | 2.4.1 | 8 |
210-
| 0.4.0 | 2.7.0 | 8 |
211-
| 0.4.1 | 2.7.1 | 8 |
212-
| 0.4.2 | 2.7.4 | 8 |
213-
| 0.5.0 | 2.10.1 | 11 |
214-
| 1.0.0-rc.1 | 2.16.1 | 11 |
215-
| 1.0.0-rc.2 | 2.16.2 | 11 |
216-
| 1.0.0 | 2.16.2 | 11 |
217-
| 1.1.0 | 2.18.0 | 11 |
218-
| 1.2.0-SNAPSHOT | 2.18.0 | 11 |
204+
|-------------------------|--------------------|----------------------|
205+
| 0.2.0 | 2.3.1 | 8 |
206+
| 0.3.0 | 2.4.1 | 8 |
207+
| 0.3.1 | 2.4.1 | 8 |
208+
| 0.3.2 | 2.4.1 | 8 |
209+
| 0.3.3 | 2.4.1 | 8 |
210+
| 0.4.0 | 2.7.0 | 8 |
211+
| 0.4.1 | 2.7.1 | 8 |
212+
| 0.4.2 | 2.7.4 | 8 |
213+
| 0.5.0 | 2.10.1 | 11 |
214+
| 1.0.0-rc.1 | 2.16.1 | 11 |
215+
| 1.0.0-rc.2 | 2.16.2 | 11 |
216+
| 1.0.0 | 2.16.2 | 11 |
217+
| 1.1.0 | 2.18.0 | 11 |
218+
| 1.2.0-SNAPSHOT | 2.18.0 | 11 |
219219

220220
## How to Contribute?
221221

0 commit comments

Comments
 (0)