diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index db5dcab6fa2..4c75aa1a5dc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,7 @@ env: jobs: quick-build: if: github.event_name == 'pull_request' && !contains(github.event.pull_request.labels.*.name, 'CI build') - runs-on: ubuntu-18.04 + runs-on: ubuntu-20.04 container: centos:7 steps: - name: Install environment @@ -47,7 +47,7 @@ jobs: mvn compiler:compile -Pdev,jdk17 -B -U -e check-format: if: github.event_name == 'pull_request' - runs-on: ubuntu-18.04 + runs-on: ubuntu-20.04 container: centos:7 steps: - name: Install environment @@ -76,7 +76,7 @@ jobs: run: | mvn spotless:check -Pdev,jdk17 -B -U -e prepare: - runs-on: ubuntu-18.04 + runs-on: ubuntu-20.04 outputs: stagingRepositoryId: ${{ steps.staging.outputs.stagingRepositoryId }} steps: @@ -93,7 +93,7 @@ jobs: echo "::set-output name=stagingRepositoryId::$STAGING_REPOSITORY_ID" linux-x86_64: if: github.event_name == 'push' || contains(github.event.pull_request.labels.*.name, 'CI build') - runs-on: ubuntu-18.04 + runs-on: ubuntu-20.04 container: centos:7 needs: prepare strategy: @@ -163,7 +163,7 @@ jobs: df -h macosx-x86_64: if: github.event_name == 'push' || contains(github.event.pull_request.labels.*.name, 'CI build') - runs-on: macos-10.15 + runs-on: macos-11 needs: prepare strategy: matrix: @@ -287,7 +287,7 @@ jobs: deploy: if: github.event_name == 'push' && contains(github.ref, 'master') needs: [linux-x86_64, macosx-x86_64, windows-x86_64] - runs-on: ubuntu-18.04 + runs-on: ubuntu-20.04 steps: - name: Configure Java uses: actions/setup-java@v2 diff --git a/README.md b/README.md index 8efaa958da5..e7e50eac27c 100644 --- a/README.md +++ b/README.md @@ -71,12 +71,12 @@ systems with no GPU support, you should add the following dependencies: org.tensorflow tensorflow-core-api - 0.5.0 + 0.5.1 org.tensorflow tensorflow-core-api - 0.5.0 + 0.5.1 linux-x86_64 ``` @@ -87,24 +87,24 @@ native dependencies as follows: org.tensorflow tensorflow-core-api - 0.5.0 + 0.5.1 org.tensorflow tensorflow-core-api - 0.5.0 + 0.5.1 linux-x86_64-gpu org.tensorflow tensorflow-core-api - 0.5.0 + 0.5.1 macosx-x86_64 org.tensorflow tensorflow-core-api - 0.5.0 + 0.5.1 windows-x86_64-gpu ``` @@ -126,7 +126,7 @@ simply add this dependency to your application: org.tensorflow tensorflow-core-platform - 0.5.0 + 0.5.1 ``` or this dependency if you want to run it only on platforms with GPU support: @@ -134,7 +134,7 @@ or this dependency if you want to run it only on platforms with GPU support: org.tensorflow tensorflow-core-platform-gpu - 0.5.0 + 0.5.1 ``` @@ -164,7 +164,7 @@ to add Sonatype OSS repository in your pom.xml, like the following org.tensorflow tensorflow-core-platform - 0.5.0-SNAPSHOT + 0.6.0-SNAPSHOT ``` @@ -184,6 +184,7 @@ This table shows the mapping between TensorFlow, TensorFlow Java and minimum sup | 0.4.1 | 2.7.1 | 8 | | 0.4.2 | 2.7.4 | 8 | | 0.5.0 | 2.10.1 | 11 | +| 0.5.1 | 2.10.1 | 11 | ## How to Contribute? diff --git a/docs/install.md b/docs/install.md index d204396b9a5..b6608ccab02 100644 --- a/docs/install.md +++ b/docs/install.md @@ -58,7 +58,7 @@ For example, org.tensorflow tensorflow-core-platform - 0.4.1 + 0.5.1 ``` @@ -101,7 +101,7 @@ snapshots repository in your `pom.xml`. org.tensorflow tensorflow-core-platform - 0.5.0-SNAPSHOT + 0.6.0-SNAPSHOT ``` @@ -164,7 +164,7 @@ add the TensorFlow dependency to the project's `pom.xml` file: org.tensorflow tensorflow-core-platform - 0.4.1 + 0.5.1 diff --git a/pom.xml b/pom.xml index 52df2fe3827..4b76ccea4f6 100644 --- a/pom.xml +++ b/pom.xml @@ -7,7 +7,7 @@ org.tensorflow tensorflow-java - 0.5.0 + 0.5.1 pom TensorFlow Java Parent diff --git a/tensorflow-core/pom.xml b/tensorflow-core/pom.xml index 644ab837496..ec63091c606 100644 --- a/tensorflow-core/pom.xml +++ b/tensorflow-core/pom.xml @@ -22,7 +22,7 @@ org.tensorflow tensorflow-java - 0.5.0 + 0.5.1 tensorflow-core pom @@ -43,7 +43,7 @@ Bumped to newer version to patch a CVE only present in protobuf-java --> - 3.19.4 + 3.19.6 ${javacpp.platform}${javacpp.platform.extension} false diff --git a/tensorflow-core/tensorflow-core-api/pom.xml b/tensorflow-core/tensorflow-core-api/pom.xml index f1080725e0f..e02b79b8562 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.5.0 + 0.5.1 tensorflow-core-api jar diff --git a/tensorflow-core/tensorflow-core-generator/pom.xml b/tensorflow-core/tensorflow-core-generator/pom.xml index 914667af189..a745626df96 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.5.0 + 0.5.1 tensorflow-core-generator jar diff --git a/tensorflow-core/tensorflow-core-platform-gpu/pom.xml b/tensorflow-core/tensorflow-core-platform-gpu/pom.xml index b8fd6f2e931..2972e63570e 100644 --- a/tensorflow-core/tensorflow-core-platform-gpu/pom.xml +++ b/tensorflow-core/tensorflow-core-platform-gpu/pom.xml @@ -22,7 +22,7 @@ org.tensorflow tensorflow-core - 0.5.0 + 0.5.1 tensorflow-core-platform-gpu TensorFlow Core API Library Platform GPU diff --git a/tensorflow-core/tensorflow-core-platform/pom.xml b/tensorflow-core/tensorflow-core-platform/pom.xml index 78fd63ced21..c0859c964c8 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.5.0 + 0.5.1 tensorflow-core-platform TensorFlow Core API Library Platform diff --git a/tensorflow-framework/pom.xml b/tensorflow-framework/pom.xml index fa728aad2cb..1db976f1aac 100644 --- a/tensorflow-framework/pom.xml +++ b/tensorflow-framework/pom.xml @@ -22,7 +22,7 @@ org.tensorflow tensorflow-java - 0.5.0 + 0.5.1 tensorflow-framework jar