Skip to content

Commit 8fdeca6

Browse files
authored
Releasing 0.5.1 (#495)
* Releasing 0.5.1 * Upgrade Linux build servers to Ubuntu 20.04 (since 18.04 has been deprecated and turned off)
1 parent ab0da30 commit 8fdeca6

File tree

10 files changed

+26
-25
lines changed

10 files changed

+26
-25
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ env:
1717
jobs:
1818
quick-build:
1919
if: github.event_name == 'pull_request' && !contains(github.event.pull_request.labels.*.name, 'CI build')
20-
runs-on: ubuntu-18.04
20+
runs-on: ubuntu-20.04
2121
container: centos:7
2222
steps:
2323
- name: Install environment
@@ -47,7 +47,7 @@ jobs:
4747
mvn compiler:compile -Pdev,jdk17 -B -U -e
4848
check-format:
4949
if: github.event_name == 'pull_request'
50-
runs-on: ubuntu-18.04
50+
runs-on: ubuntu-20.04
5151
container: centos:7
5252
steps:
5353
- name: Install environment
@@ -76,7 +76,7 @@ jobs:
7676
run: |
7777
mvn spotless:check -Pdev,jdk17 -B -U -e
7878
prepare:
79-
runs-on: ubuntu-18.04
79+
runs-on: ubuntu-20.04
8080
outputs:
8181
stagingRepositoryId: ${{ steps.staging.outputs.stagingRepositoryId }}
8282
steps:
@@ -93,7 +93,7 @@ jobs:
9393
echo "::set-output name=stagingRepositoryId::$STAGING_REPOSITORY_ID"
9494
linux-x86_64:
9595
if: github.event_name == 'push' || contains(github.event.pull_request.labels.*.name, 'CI build')
96-
runs-on: ubuntu-18.04
96+
runs-on: ubuntu-20.04
9797
container: centos:7
9898
needs: prepare
9999
strategy:
@@ -287,7 +287,7 @@ jobs:
287287
deploy:
288288
if: github.event_name == 'push' && contains(github.ref, 'master')
289289
needs: [linux-x86_64, macosx-x86_64, windows-x86_64]
290-
runs-on: ubuntu-18.04
290+
runs-on: ubuntu-20.04
291291
steps:
292292
- name: Configure Java
293293
uses: actions/setup-java@v2

README.md

Lines changed: 10 additions & 9 deletions
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.5.0</version>
74+
<version>0.5.1</version>
7575
</dependency>
7676
<dependency>
7777
<groupId>org.tensorflow</groupId>
7878
<artifactId>tensorflow-core-api</artifactId>
79-
<version>0.5.0</version>
79+
<version>0.5.1</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.5.0</version>
90+
<version>0.5.1</version>
9191
</dependency>
9292
<dependency>
9393
<groupId>org.tensorflow</groupId>
9494
<artifactId>tensorflow-core-api</artifactId>
95-
<version>0.5.0</version>
95+
<version>0.5.1</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.5.0</version>
101+
<version>0.5.1</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.5.0</version>
107+
<version>0.5.1</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.5.0</version>
129+
<version>0.5.1</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.5.0</version>
137+
<version>0.5.1</version>
138138
</dependency>
139139
```
140140

@@ -164,7 +164,7 @@ to add Sonatype OSS repository in your pom.xml, like the following
164164
<dependency>
165165
<groupId>org.tensorflow</groupId>
166166
<artifactId>tensorflow-core-platform</artifactId>
167-
<version>0.5.0-SNAPSHOT</version>
167+
<version>0.6.0-SNAPSHOT</version>
168168
</dependency>
169169
</dependencies>
170170
```
@@ -184,6 +184,7 @@ This table shows the mapping between TensorFlow, TensorFlow Java and minimum sup
184184
| 0.4.1 | 2.7.1 | 8 |
185185
| 0.4.2 | 2.7.4 | 8 |
186186
| 0.5.0 | 2.10.1 | 11 |
187+
| 0.5.1 | 2.10.1 | 11 |
187188

188189
## How to Contribute?
189190

docs/install.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ For example,
5858
<dependency>
5959
<groupId>org.tensorflow</groupId>
6060
<artifactId>tensorflow-core-platform</artifactId>
61-
<version>0.4.1</version>
61+
<version>0.5.1</version>
6262
</dependency>
6363
```
6464

@@ -101,7 +101,7 @@ snapshots repository in your `pom.xml`.
101101
<dependency>
102102
<groupId>org.tensorflow</groupId>
103103
<artifactId>tensorflow-core-platform</artifactId>
104-
<version>0.5.0-SNAPSHOT</version>
104+
<version>0.6.0-SNAPSHOT</version>
105105
</dependency>
106106
</dependencies>
107107
```
@@ -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.4.1</version>
167+
<version>0.5.1</version>
168168
</dependency>
169169
</dependencies>
170170
</project>

pom.xml

Lines changed: 1 addition & 1 deletion
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</version>
10+
<version>0.5.1</version>
1111
<packaging>pom</packaging>
1212

1313
<name>TensorFlow Java Parent</name>

tensorflow-core/pom.xml

Lines changed: 2 additions & 2 deletions
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</version>
25+
<version>0.5.1</version>
2626
</parent>
2727
<artifactId>tensorflow-core</artifactId>
2828
<packaging>pom</packaging>
@@ -43,7 +43,7 @@
4343
4444
Bumped to newer version to patch a CVE only present in protobuf-java
4545
-->
46-
<protobuf.version>3.19.4</protobuf.version>
46+
<protobuf.version>3.19.6</protobuf.version>
4747

4848
<native.classifier>${javacpp.platform}${javacpp.platform.extension}</native.classifier>
4949
<javacpp.build.skip>false</javacpp.build.skip> <!-- To skip execution of build.sh: -Djavacpp.build.skip=true -->

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

Lines changed: 1 addition & 1 deletion
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</version>
9+
<version>0.5.1</version>
1010
</parent>
1111
<artifactId>tensorflow-core-api</artifactId>
1212
<packaging>jar</packaging>

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

Lines changed: 1 addition & 1 deletion
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</version>
8+
<version>0.5.1</version>
99
</parent>
1010
<artifactId>tensorflow-core-generator</artifactId>
1111
<packaging>jar</packaging>

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

Lines changed: 1 addition & 1 deletion
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</version>
25+
<version>0.5.1</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

Lines changed: 1 addition & 1 deletion
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</version>
25+
<version>0.5.1</version>
2626
</parent>
2727
<artifactId>tensorflow-core-platform</artifactId>
2828
<name>TensorFlow Core API Library Platform</name>

tensorflow-framework/pom.xml

Lines changed: 1 addition & 1 deletion
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</version>
25+
<version>0.5.1</version>
2626
</parent>
2727
<artifactId>tensorflow-framework</artifactId>
2828
<packaging>jar</packaging>

0 commit comments

Comments
 (0)