Skip to content

Commit ab0da30

Browse files
author
klessard
committed
Releasing 0.5.0
1 parent 60e5473 commit ab0da30

File tree

8 files changed

+16
-16
lines changed

8 files changed

+16
-16
lines changed

README.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -71,12 +71,12 @@ systems with no GPU support, you should add the following dependencies:
7171
<dependency>
7272
<groupId>org.tensorflow</groupId>
7373
<artifactId>tensorflow-core-api</artifactId>
74-
<version>0.4.2</version>
74+
<version>0.5.0</version>
7575
</dependency>
7676
<dependency>
7777
<groupId>org.tensorflow</groupId>
7878
<artifactId>tensorflow-core-api</artifactId>
79-
<version>0.4.2</version>
79+
<version>0.5.0</version>
8080
<classifier>linux-x86_64</classifier>
8181
</dependency>
8282
```
@@ -87,24 +87,24 @@ native dependencies as follows:
8787
<dependency>
8888
<groupId>org.tensorflow</groupId>
8989
<artifactId>tensorflow-core-api</artifactId>
90-
<version>0.4.2</version>
90+
<version>0.5.0</version>
9191
</dependency>
9292
<dependency>
9393
<groupId>org.tensorflow</groupId>
9494
<artifactId>tensorflow-core-api</artifactId>
95-
<version>0.4.2</version>
95+
<version>0.5.0</version>
9696
<classifier>linux-x86_64-gpu</classifier>
9797
</dependency>
9898
<dependency>
9999
<groupId>org.tensorflow</groupId>
100100
<artifactId>tensorflow-core-api</artifactId>
101-
<version>0.4.2</version>
101+
<version>0.5.0</version>
102102
<classifier>macosx-x86_64</classifier>
103103
</dependency>
104104
<dependency>
105105
<groupId>org.tensorflow</groupId>
106106
<artifactId>tensorflow-core-api</artifactId>
107-
<version>0.4.2</version>
107+
<version>0.5.0</version>
108108
<classifier>windows-x86_64-gpu</classifier>
109109
</dependency>
110110
```
@@ -126,15 +126,15 @@ simply add this dependency to your application:
126126
<dependency>
127127
<groupId>org.tensorflow</groupId>
128128
<artifactId>tensorflow-core-platform</artifactId>
129-
<version>0.4.2</version>
129+
<version>0.5.0</version>
130130
</dependency>
131131
```
132132
or this dependency if you want to run it only on platforms with GPU support:
133133
```xml
134134
<dependency>
135135
<groupId>org.tensorflow</groupId>
136136
<artifactId>tensorflow-core-platform-gpu</artifactId>
137-
<version>0.4.2</version>
137+
<version>0.5.0</version>
138138
</dependency>
139139
```
140140

@@ -183,7 +183,7 @@ This table shows the mapping between TensorFlow, TensorFlow Java and minimum sup
183183
| 0.4.0 | 2.7.0 | 8 |
184184
| 0.4.1 | 2.7.1 | 8 |
185185
| 0.4.2 | 2.7.4 | 8 |
186-
| 0.5.0-SNAPSHOT | 2.9.1 | 11 |
186+
| 0.5.0 | 2.10.1 | 11 |
187187

188188
## How to Contribute?
189189

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>0.5.0-SNAPSHOT</version>
10+
<version>0.5.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>0.5.0-SNAPSHOT</version>
25+
<version>0.5.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>0.5.0-SNAPSHOT</version>
9+
<version>0.5.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>0.5.0-SNAPSHOT</version>
8+
<version>0.5.0</version>
99
</parent>
1010
<artifactId>tensorflow-core-generator</artifactId>
1111
<packaging>jar</packaging>

tensorflow-core/tensorflow-core-platform-gpu/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>0.5.0-SNAPSHOT</version>
25+
<version>0.5.0</version>
2626
</parent>
2727
<artifactId>tensorflow-core-platform-gpu</artifactId>
2828
<name>TensorFlow Core API Library Platform GPU</name>

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>0.5.0-SNAPSHOT</version>
25+
<version>0.5.0</version>
2626
</parent>
2727
<artifactId>tensorflow-core-platform</artifactId>
2828
<name>TensorFlow Core API Library 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>0.5.0-SNAPSHOT</version>
25+
<version>0.5.0</version>
2626
</parent>
2727
<artifactId>tensorflow-framework</artifactId>
2828
<packaging>jar</packaging>

0 commit comments

Comments
 (0)