Skip to content

Commit bdcec19

Browse files
karllessardCraigacp
authored andcommitted
Releasing 1.0.0
1 parent 1ee9eb9 commit bdcec19

File tree

9 files changed

+21
-20
lines changed

9 files changed

+21
-20
lines changed

README.md

+10-9
Original file line numberDiff line numberDiff line change
@@ -69,12 +69,12 @@ systems with no GPU support, you should add the following dependencies:
6969
<dependency>
7070
<groupId>org.tensorflow</groupId>
7171
<artifactId>tensorflow-core-api</artifactId>
72-
<version>1.0.0-rc.2</version>
72+
<version>1.0.0</version>
7373
</dependency>
7474
<dependency>
7575
<groupId>org.tensorflow</groupId>
7676
<artifactId>tensorflow-core-native</artifactId>
77-
<version>1.0.0-rc.2</version>
77+
<version>1.0.0</version>
7878
<classifier>linux-x86_64</classifier>
7979
</dependency>
8080
```
@@ -85,24 +85,24 @@ native dependencies as follows:
8585
<dependency>
8686
<groupId>org.tensorflow</groupId>
8787
<artifactId>tensorflow-core-api</artifactId>
88-
<version>1.0.0-rc.2</version>
88+
<version>1.0.0</version>
8989
</dependency>
9090
<dependency>
9191
<groupId>org.tensorflow</groupId>
9292
<artifactId>tensorflow-core-native</artifactId>
93-
<version>1.0.0-rc.2</version>
93+
<version>1.0.0</version>
9494
<classifier>linux-x86_64-gpu</classifier>
9595
</dependency>
9696
<dependency>
9797
<groupId>org.tensorflow</groupId>
9898
<artifactId>tensorflow-core-native</artifactId>
99-
<version>1.0.0-rc.2</version>
99+
<version>1.0.0</version>
100100
<classifier>macosx-arm64</classifier>
101101
</dependency>
102102
<dependency>
103103
<groupId>org.tensorflow</groupId>
104104
<artifactId>tensorflow-core-native</artifactId>
105-
<version>1.0.0-rc.2</version>
105+
<version>1.0.0</version>
106106
<classifier>windows-x86_64</classifier>
107107
</dependency>
108108
```
@@ -123,7 +123,7 @@ simply add this dependency to your application:
123123
<dependency>
124124
<groupId>org.tensorflow</groupId>
125125
<artifactId>tensorflow-core-platform</artifactId>
126-
<version>1.0.0-rc.2</version>
126+
<version>1.0.0</version>
127127
</dependency>
128128
```
129129

@@ -153,7 +153,7 @@ to add Sonatype OSS repository in your pom.xml, like the following
153153
<dependency>
154154
<groupId>org.tensorflow</groupId>
155155
<artifactId>tensorflow-core-platform</artifactId>
156-
<version>1.0.0-SNAPSHOT</version>
156+
<version>1.1.0-SNAPSHOT</version>
157157
</dependency>
158158
</dependencies>
159159
```
@@ -175,7 +175,8 @@ This table shows the mapping between TensorFlow, TensorFlow Java and minimum sup
175175
| 0.5.0 | 2.10.1 | 11 |
176176
| 1.0.0-rc.1 | 2.16.1 | 11 |
177177
| 1.0.0-rc.2 | 2.16.2 | 11 |
178-
| 1.0.0-SNAPSHOT | 2.16.2 | 11 |
178+
| 1.0.0 | 2.16.2 | 11 |
179+
| 1.1.0-SNAPSHOT | 2.16.2 | 11 |
179180

180181
## How to Contribute?
181182

docs/install.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ For example,
5959
<dependency>
6060
<groupId>org.tensorflow</groupId>
6161
<artifactId>tensorflow-core-platform</artifactId>
62-
<version>1.0.0-rc.2</version>
62+
<version>1.0.0</version>
6363
</dependency>
6464
```
6565

@@ -102,7 +102,7 @@ snapshots repository in your `pom.xml`.
102102
<dependency>
103103
<groupId>org.tensorflow</groupId>
104104
<artifactId>tensorflow-core-platform</artifactId>
105-
<version>1.0.0-SNAPSHOT</version>
105+
<version>1.1.0-SNAPSHOT</version>
106106
</dependency>
107107
</dependencies>
108108
```
@@ -119,7 +119,7 @@ repositories {
119119
}
120120
121121
dependencies {
122-
compile group: 'org.tensorflow', name: 'tensorflow-core-platform', version: '1.0.0-rc.2'
122+
compile group: 'org.tensorflow', name: 'tensorflow-core-platform', version: '1.0.0'
123123
}
124124
```
125125

@@ -165,7 +165,7 @@ add the TensorFlow dependency to the project's `pom.xml` file:
165165
<dependency>
166166
<groupId>org.tensorflow</groupId>
167167
<artifactId>tensorflow-core-platform</artifactId>
168-
<version>1.0.0-rc.2</version>
168+
<version>1.0.0</version>
169169
</dependency>
170170
</dependencies>
171171
</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-rc.2</version>
10+
<version>1.0.0</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-rc.2</version>
25+
<version>1.0.0</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-rc.2</version>
9+
<version>1.0.0</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-rc.2</version>
8+
<version>1.0.0</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-rc.2</version>
9+
<version>1.0.0</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-rc.2</version>
25+
<version>1.0.0</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-rc.2</version>
25+
<version>1.0.0</version>
2626
</parent>
2727
<artifactId>tensorflow-framework</artifactId>
2828
<packaging>jar</packaging>

0 commit comments

Comments
 (0)