Skip to content

Commit f01ec18

Browse files
committed
Update version to 1.0.0-SNAPSHOT
1 parent 0d3d023 commit f01ec18

File tree

10 files changed

+24
-30
lines changed

10 files changed

+24
-30
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ on:
55
- master
66
- staging
77
- r[0-9]+.*
8-
- bazelcism # temporary
98
pull_request:
109
branches:
1110
- master
@@ -118,12 +117,6 @@ jobs:
118117
matrix:
119118
ext: [""] #, -gpu]
120119
steps:
121-
- name: Configure page file
122-
uses: al-cheb/[email protected]
123-
with:
124-
minimum-size: 8GB
125-
maximum-size: 16GB
126-
disk-root: "C:"
127120
- name: Install environment
128121
shell: cmd
129122
run: |
@@ -158,7 +151,7 @@ jobs:
158151
call mvn clean install -pl "!tensorflow-framework" -B -U -e -Djavacpp.platform=windows-x86_64 -Djavacpp.platform.extension=${{ matrix.ext }} -am -DstagingRepositoryId=${{ needs.prepare.outputs.stagingRepositoryId }}
159152
if ERRORLEVEL 1 exit /b
160153
deploy:
161-
if: github.event_name == 'push' && contains(github.ref, 'master')
154+
if: github.event_name == 'push' && (contains(github.ref, 'master') || contains(github.ref, 'staging'))
162155
needs: [linux-x86_64, macosx-x86_64, windows-x86_64, macosx-arm64]
163156
runs-on: ubuntu-20.04
164157
steps:

README.md

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ to add Sonatype OSS repository in your pom.xml, like the following
154154
<dependency>
155155
<groupId>org.tensorflow</groupId>
156156
<artifactId>tensorflow-core-platform</artifactId>
157-
<version>0.6.0-SNAPSHOT</version>
157+
<version>1.0.0-SNAPSHOT</version>
158158
</dependency>
159159
</dependencies>
160160
```
@@ -163,18 +163,19 @@ to add Sonatype OSS repository in your pom.xml, like the following
163163

164164
This table shows the mapping between TensorFlow, TensorFlow Java and minimum supported Java versions.
165165

166-
| TensorFlow Java Version | TensorFlow Version | Minimum Java Version |
167-
| ------------- |--------------------| --------------- |
168-
| 0.2.0 | 2.3.1 | 8 |
169-
| 0.3.0 | 2.4.1 | 8 |
170-
| 0.3.1 | 2.4.1 | 8 |
171-
| 0.3.2 | 2.4.1 | 8 |
172-
| 0.3.3 | 2.4.1 | 8 |
173-
| 0.4.0 | 2.7.0 | 8 |
174-
| 0.4.1 | 2.7.1 | 8 |
175-
| 0.4.2 | 2.7.4 | 8 |
176-
| 0.5.0 | 2.10.1 | 11 |
177-
| 0.6.0-SNAPSHOT | 2.15.0 | 11 |
166+
| TensorFlow Java Version | TensorFlow Version | Minimum Java Version |
167+
|-------------------------|--------------------| --------------- |
168+
| 0.2.0 | 2.3.1 | 8 |
169+
| 0.3.0 | 2.4.1 | 8 |
170+
| 0.3.1 | 2.4.1 | 8 |
171+
| 0.3.2 | 2.4.1 | 8 |
172+
| 0.3.3 | 2.4.1 | 8 |
173+
| 0.4.0 | 2.7.0 | 8 |
174+
| 0.4.1 | 2.7.1 | 8 |
175+
| 0.4.2 | 2.7.4 | 8 |
176+
| 0.5.0 | 2.10.1 | 11 |
177+
| 0.6.0-SNAPSHOT | 2.10.1 | 11 |
178+
| 1.0.0-SNAPSHOT | 2.15.0 | 11 |
178179

179180
## How to Contribute?
180181

docs/install.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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.6.0-SNAPSHOT</version>
104+
<version>1.0.0-SNAPSHOT</version>
105105
</dependency>
106106
</dependencies>
107107
```
@@ -118,7 +118,7 @@ repositories {
118118
}
119119
120120
dependencies {
121-
compile group: 'org.tensorflow', name: 'tensorflow-core-platform', version: '0.4.1'
121+
compile group: 'org.tensorflow', name: 'tensorflow-core-platform', version: '0.5.0'
122122
}
123123
```
124124

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.6.0-SNAPSHOT</version>
10+
<version>1.0.0-SNAPSHOT</version>
1111
<packaging>pom</packaging>
1212

1313
<name>TensorFlow Java Parent</name>

tensorflow-core/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.6.0-SNAPSHOT</version>
25+
<version>1.0.0-SNAPSHOT</version>
2626
</parent>
2727
<artifactId>tensorflow-core</artifactId>
2828
<packaging>pom</packaging>

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

tensorflow-core/tensorflow-core-native/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.6.0-SNAPSHOT</version>
9+
<version>1.0.0-SNAPSHOT</version>
1010
</parent>
1111
<artifactId>tensorflow-core-native</artifactId>
1212
<packaging>jar</packaging>

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

0 commit comments

Comments
 (0)