Skip to content

Commit 13ce91b

Browse files
Craigacpkarllessard
authored andcommitted
Bumping to 1.0.0-rc1
1 parent cff20e9 commit 13ce91b

File tree

9 files changed

+24
-24
lines changed

9 files changed

+24
-24
lines changed

README.md

+13-13
Original file line numberDiff line numberDiff line change
@@ -56,24 +56,24 @@ restrictive.
5656
While TensorFlow Java can be compiled for [multiple platforms](https://github.com/tensorflow/java/blob/master/tensorflow-core/pom.xml#L54),
5757
only binaries for the followings are being **supported and distributed** by this project:
5858

59-
- `linux-x86_64`: Linux platforms on Intel chips
60-
- `linux-x86_64-gpu`: Linux platforms on Intel chips with Cuda GPU support
61-
- `macosx-x86_64`: MacOS X platforms on Intel chips
59+
- `linux-x86_64`: Linux platforms on Intel/AMD chips
60+
- `linux-x86_64-gpu`: Linux platforms on Intel/AMD chips with Cuda GPU support
61+
- `macosx-x86_64`: MacOS X platforms on Intel/AMD chips
6262
- `macosx-arm64`: MacOS X platforms on Apple Silicon chips
63-
- `windows-x86_64`: Windows platforms on Intel chips
63+
- `windows-x86_64`: Windows platforms on Intel/AMD chips
6464

6565
For example, for building a JAR that uses TensorFlow and is targeted to be deployed only on Linux
6666
systems with no GPU support, you should add the following dependencies:
6767
```xml
6868
<dependency>
6969
<groupId>org.tensorflow</groupId>
7070
<artifactId>tensorflow-core-api</artifactId>
71-
<version>0.5.0</version>
71+
<version>1.0.0-rc1</version>
7272
</dependency>
7373
<dependency>
7474
<groupId>org.tensorflow</groupId>
7575
<artifactId>tensorflow-core-native</artifactId>
76-
<version>0.5.0</version>
76+
<version>1.0.0-rc1</version>
7777
<classifier>linux-x86_64</classifier>
7878
</dependency>
7979
```
@@ -84,24 +84,24 @@ native dependencies as follows:
8484
<dependency>
8585
<groupId>org.tensorflow</groupId>
8686
<artifactId>tensorflow-core-api</artifactId>
87-
<version>0.5.0</version>
87+
<version>1.0.0-rc1</version>
8888
</dependency>
8989
<dependency>
9090
<groupId>org.tensorflow</groupId>
9191
<artifactId>tensorflow-core-native</artifactId>
92-
<version>0.5.0</version>
92+
<version>1.0.0-rc1</version>
9393
<classifier>linux-x86_64-gpu</classifier>
9494
</dependency>
9595
<dependency>
9696
<groupId>org.tensorflow</groupId>
9797
<artifactId>tensorflow-core-native</artifactId>
98-
<version>0.5.0</version>
98+
<version>1.0.0-rc1</version>
9999
<classifier>macosx-arm64</classifier>
100100
</dependency>
101101
<dependency>
102102
<groupId>org.tensorflow</groupId>
103103
<artifactId>tensorflow-core-native</artifactId>
104-
<version>0.5.0</version>
104+
<version>1.0.0-rc1</version>
105105
<classifier>windows-x86_64</classifier>
106106
</dependency>
107107
```
@@ -116,13 +116,13 @@ required to run TensorFlow Java on any [supported platforms](README.md#individua
116116

117117
- `tensorflow-core-platform`: Includes `tensorflow-core-api`, plus native artifacts for `linux-x86_64`, `macosx-arm64`, `macosx-x86_64` and `windows-x86_64`
118118

119-
For example, to run TensorFlow Java on any platform for which a binary is being distributed by this project, you can
119+
For example, to run TensorFlow Java on any CPU platform for which a binary is being distributed by this project, you can
120120
simply add this dependency to your application:
121121
```xml
122122
<dependency>
123123
<groupId>org.tensorflow</groupId>
124124
<artifactId>tensorflow-core-platform</artifactId>
125-
<version>0.5.0</version>
125+
<version>1.0.0-rc1</version>
126126
</dependency>
127127
```
128128

@@ -172,7 +172,7 @@ This table shows the mapping between TensorFlow, TensorFlow Java and minimum sup
172172
| 0.4.1 | 2.7.1 | 8 |
173173
| 0.4.2 | 2.7.4 | 8 |
174174
| 0.5.0 | 2.10.1 | 11 |
175-
| 0.6.0-SNAPSHOT | 2.10.1 | 11 |
175+
| 1.0.0-rc1 | 2.16.1 | 11 |
176176
| 1.0.0-SNAPSHOT | 2.16.1 | 11 |
177177

178178
## How to Contribute?

docs/install.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ following platforms:
2525

2626
## Versions
2727

28-
TensorFlow Java has its own release cycle, independent from the
28+
TensorFlow Java has its own release cycle, independent of the
2929
[TensorFlow runtime](https://github.com/tensorflow/tensorflow). Consequently,
3030
its version does not match the version of TensorFlow runtime it runs on. Consult
3131
the TensorFlow Java
@@ -58,7 +58,7 @@ For example,
5858
<dependency>
5959
<groupId>org.tensorflow</groupId>
6060
<artifactId>tensorflow-core-platform</artifactId>
61-
<version>0.5.0</version>
61+
<version>1.0.0-rc1</version>
6262
</dependency>
6363
```
6464

@@ -118,7 +118,7 @@ repositories {
118118
}
119119
120120
dependencies {
121-
compile group: 'org.tensorflow', name: 'tensorflow-core-platform', version: '0.5.0'
121+
compile group: 'org.tensorflow', name: 'tensorflow-core-platform', version: '1.0.0-rc1'
122122
}
123123
```
124124

@@ -164,7 +164,7 @@ add the TensorFlow dependency to the project's `pom.xml` file:
164164
<dependency>
165165
<groupId>org.tensorflow</groupId>
166166
<artifactId>tensorflow-core-platform</artifactId>
167-
<version>0.5.0</version>
167+
<version>1.0.0-rc1</version>
168168
</dependency>
169169
</dependencies>
170170
</project>

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<groupId>org.tensorflow</groupId>
99
<artifactId>tensorflow-java</artifactId>
10-
<version>1.0.0-SNAPSHOT</version>
10+
<version>1.0.0-rc1</version>
1111
<packaging>pom</packaging>
1212

1313
<name>TensorFlow Java Parent</name>

tensorflow-core/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>org.tensorflow</groupId>
2424
<artifactId>tensorflow-java</artifactId>
25-
<version>1.0.0-SNAPSHOT</version>
25+
<version>1.0.0-rc1</version>
2626
</parent>
2727
<artifactId>tensorflow-core</artifactId>
2828
<packaging>pom</packaging>

tensorflow-core/tensorflow-core-api/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.tensorflow</groupId>
88
<artifactId>tensorflow-core</artifactId>
9-
<version>1.0.0-SNAPSHOT</version>
9+
<version>1.0.0-rc1</version>
1010
</parent>
1111
<artifactId>tensorflow-core-api</artifactId>
1212
<packaging>jar</packaging>

tensorflow-core/tensorflow-core-generator/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.tensorflow</groupId>
77
<artifactId>tensorflow-core</artifactId>
8-
<version>1.0.0-SNAPSHOT</version>
8+
<version>1.0.0-rc1</version>
99
</parent>
1010
<artifactId>tensorflow-core-generator</artifactId>
1111
<packaging>jar</packaging>

tensorflow-core/tensorflow-core-native/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.tensorflow</groupId>
88
<artifactId>tensorflow-core</artifactId>
9-
<version>1.0.0-SNAPSHOT</version>
9+
<version>1.0.0-rc1</version>
1010
</parent>
1111
<artifactId>tensorflow-core-native</artifactId>
1212
<packaging>jar</packaging>

tensorflow-core/tensorflow-core-platform/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>org.tensorflow</groupId>
2424
<artifactId>tensorflow-core</artifactId>
25-
<version>1.0.0-SNAPSHOT</version>
25+
<version>1.0.0-rc1</version>
2626
</parent>
2727
<artifactId>tensorflow-core-platform</artifactId>
2828
<name>TensorFlow API Platform</name>

tensorflow-framework/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>org.tensorflow</groupId>
2424
<artifactId>tensorflow-java</artifactId>
25-
<version>1.0.0-SNAPSHOT</version>
25+
<version>1.0.0-rc1</version>
2626
</parent>
2727
<artifactId>tensorflow-framework</artifactId>
2828
<packaging>jar</packaging>

0 commit comments

Comments
 (0)