From 41130a29fb453c58dc523ecaf4cff934ca38a049 Mon Sep 17 00:00:00 2001 From: Karl Lessard Date: Mon, 12 Feb 2024 16:17:36 -0500 Subject: [PATCH] Update version to 1.0.0-SNAPSHOT --- .github/workflows/build.yml | 9 +------ README.md | 27 ++++++++++--------- docs/install.md | 4 +-- pom.xml | 2 +- tensorflow-core/pom.xml | 2 +- tensorflow-core/tensorflow-core-api/pom.xml | 2 +- .../tensorflow-core-generator/pom.xml | 2 +- .../tensorflow-core-native/pom.xml | 2 +- .../tensorflow-core-platform/pom.xml | 2 +- tensorflow-framework/pom.xml | 2 +- 10 files changed, 24 insertions(+), 30 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 266d65872d2..5b8cc3316f6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -5,7 +5,6 @@ on: - master - staging - r[0-9]+.* - - bazelcism # temporary pull_request: branches: - master @@ -118,12 +117,6 @@ jobs: matrix: ext: [""] #, -gpu] steps: - - name: Configure page file - uses: al-cheb/configure-pagefile-action@v1.2 - with: - minimum-size: 8GB - maximum-size: 16GB - disk-root: "C:" - name: Install environment shell: cmd run: | @@ -158,7 +151,7 @@ jobs: 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 }} if ERRORLEVEL 1 exit /b deploy: - if: github.event_name == 'push' && contains(github.ref, 'master') + if: github.event_name == 'push' && (contains(github.ref, 'master') || contains(github.ref, 'staging')) needs: [linux-x86_64, macosx-x86_64, windows-x86_64, macosx-arm64] runs-on: ubuntu-20.04 steps: diff --git a/README.md b/README.md index ff18494ad5f..cadd1215e5c 100644 --- a/README.md +++ b/README.md @@ -154,7 +154,7 @@ to add Sonatype OSS repository in your pom.xml, like the following org.tensorflow tensorflow-core-platform - 0.6.0-SNAPSHOT + 1.0.0-SNAPSHOT ``` @@ -163,18 +163,19 @@ to add Sonatype OSS repository in your pom.xml, like the following This table shows the mapping between TensorFlow, TensorFlow Java and minimum supported Java versions. -| TensorFlow Java Version | TensorFlow Version | Minimum Java Version | -| ------------- |--------------------| --------------- | -| 0.2.0 | 2.3.1 | 8 | -| 0.3.0 | 2.4.1 | 8 | -| 0.3.1 | 2.4.1 | 8 | -| 0.3.2 | 2.4.1 | 8 | -| 0.3.3 | 2.4.1 | 8 | -| 0.4.0 | 2.7.0 | 8 | -| 0.4.1 | 2.7.1 | 8 | -| 0.4.2 | 2.7.4 | 8 | -| 0.5.0 | 2.10.1 | 11 | -| 0.6.0-SNAPSHOT | 2.15.0 | 11 | +| TensorFlow Java Version | TensorFlow Version | Minimum Java Version | +|-------------------------|--------------------| --------------- | +| 0.2.0 | 2.3.1 | 8 | +| 0.3.0 | 2.4.1 | 8 | +| 0.3.1 | 2.4.1 | 8 | +| 0.3.2 | 2.4.1 | 8 | +| 0.3.3 | 2.4.1 | 8 | +| 0.4.0 | 2.7.0 | 8 | +| 0.4.1 | 2.7.1 | 8 | +| 0.4.2 | 2.7.4 | 8 | +| 0.5.0 | 2.10.1 | 11 | +| 0.6.0-SNAPSHOT | 2.10.1 | 11 | +| 1.0.0-SNAPSHOT | 2.15.0 | 11 | ## How to Contribute? diff --git a/docs/install.md b/docs/install.md index cc4a19ac2be..091bd1b4c01 100644 --- a/docs/install.md +++ b/docs/install.md @@ -101,7 +101,7 @@ snapshots repository in your `pom.xml`. org.tensorflow tensorflow-core-platform - 0.6.0-SNAPSHOT + 1.0.0-SNAPSHOT ``` @@ -118,7 +118,7 @@ repositories { } dependencies { - compile group: 'org.tensorflow', name: 'tensorflow-core-platform', version: '0.4.1' + compile group: 'org.tensorflow', name: 'tensorflow-core-platform', version: '0.5.0' } ``` diff --git a/pom.xml b/pom.xml index d1dbaadca85..6eb3dd2c328 100644 --- a/pom.xml +++ b/pom.xml @@ -7,7 +7,7 @@ org.tensorflow tensorflow-java - 0.6.0-SNAPSHOT + 1.0.0-SNAPSHOT pom TensorFlow Java Parent diff --git a/tensorflow-core/pom.xml b/tensorflow-core/pom.xml index 7e7152cd708..07d619ff771 100644 --- a/tensorflow-core/pom.xml +++ b/tensorflow-core/pom.xml @@ -22,7 +22,7 @@ org.tensorflow tensorflow-java - 0.6.0-SNAPSHOT + 1.0.0-SNAPSHOT tensorflow-core pom diff --git a/tensorflow-core/tensorflow-core-api/pom.xml b/tensorflow-core/tensorflow-core-api/pom.xml index c2e1529b052..0bbaa047aa7 100644 --- a/tensorflow-core/tensorflow-core-api/pom.xml +++ b/tensorflow-core/tensorflow-core-api/pom.xml @@ -6,7 +6,7 @@ org.tensorflow tensorflow-core - 0.6.0-SNAPSHOT + 1.0.0-SNAPSHOT tensorflow-core-api jar diff --git a/tensorflow-core/tensorflow-core-generator/pom.xml b/tensorflow-core/tensorflow-core-generator/pom.xml index 112ba96de4e..2844e4d33ea 100644 --- a/tensorflow-core/tensorflow-core-generator/pom.xml +++ b/tensorflow-core/tensorflow-core-generator/pom.xml @@ -5,7 +5,7 @@ org.tensorflow tensorflow-core - 0.6.0-SNAPSHOT + 1.0.0-SNAPSHOT tensorflow-core-generator jar diff --git a/tensorflow-core/tensorflow-core-native/pom.xml b/tensorflow-core/tensorflow-core-native/pom.xml index b951bd02f74..75c2914f5b7 100644 --- a/tensorflow-core/tensorflow-core-native/pom.xml +++ b/tensorflow-core/tensorflow-core-native/pom.xml @@ -6,7 +6,7 @@ org.tensorflow tensorflow-core - 0.6.0-SNAPSHOT + 1.0.0-SNAPSHOT tensorflow-core-native jar diff --git a/tensorflow-core/tensorflow-core-platform/pom.xml b/tensorflow-core/tensorflow-core-platform/pom.xml index 5285de5414f..202117574f7 100644 --- a/tensorflow-core/tensorflow-core-platform/pom.xml +++ b/tensorflow-core/tensorflow-core-platform/pom.xml @@ -22,7 +22,7 @@ org.tensorflow tensorflow-core - 0.6.0-SNAPSHOT + 1.0.0-SNAPSHOT tensorflow-core-platform TensorFlow API Platform diff --git a/tensorflow-framework/pom.xml b/tensorflow-framework/pom.xml index 8d5ff4e7272..982bf78e118 100644 --- a/tensorflow-framework/pom.xml +++ b/tensorflow-framework/pom.xml @@ -22,7 +22,7 @@ org.tensorflow tensorflow-java - 0.6.0-SNAPSHOT + 1.0.0-SNAPSHOT tensorflow-framework jar