From fdd1186b25600840bed4e7032dde1347ae488ef3 Mon Sep 17 00:00:00 2001 From: Alexey Kuzin Date: Tue, 2 Sep 2025 02:41:47 +0200 Subject: [PATCH 1/3] [maven-release-plugin] prepare release v0.14.3 --- pom.xml | 6 +++--- .../space/options/crud/OperationWithYieldEveryOptions.java | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pom.xml b/pom.xml index 1a9ed2b65..9482a92df 100644 --- a/pom.xml +++ b/pom.xml @@ -9,7 +9,7 @@ io.tarantool cartridge-driver jar - 1.0.0-SNAPSHOT + 0.14.3 @@ -49,7 +49,7 @@ scm:git:git@github.com/tarantool/cartridge-java.git scm:git:git@github.com:tarantool/cartridge-java.git http://github.com/tarantool/cartridge-java/tree/master - v0.13.0 + v0.14.3 @@ -175,7 +175,7 @@ true ossrh - https://oss.sonatype.org/ + https://ossrh-staging-api.central.sonatype.com/ false diff --git a/src/main/java/io/tarantool/driver/api/space/options/crud/OperationWithYieldEveryOptions.java b/src/main/java/io/tarantool/driver/api/space/options/crud/OperationWithYieldEveryOptions.java index 5efacf3ff..a3715bcc6 100644 --- a/src/main/java/io/tarantool/driver/api/space/options/crud/OperationWithYieldEveryOptions.java +++ b/src/main/java/io/tarantool/driver/api/space/options/crud/OperationWithYieldEveryOptions.java @@ -10,8 +10,8 @@ public interface OperationWithYieldEveryOptions { /** - * Sets number of tuples processed on storage to yield after, "yield_every" should be > 0. - * @param yieldEvery number of tuples processed on storage to yield after, "yield_every" should be > 0. + * Sets number of tuples processed on storage to yield after, "yield_every" should be > 0. + * @param yieldEvery number of tuples processed on storage to yield after, "yield_every" should be > 0. * @return this option instance. * @throws IllegalArgumentException {@code if yieldEvery < 0}. */ From 556ecb737f46bf8524672493b3407bde0cfbf62a Mon Sep 17 00:00:00 2001 From: Alexey Kuzin Date: Tue, 2 Sep 2025 03:30:18 +0200 Subject: [PATCH 2/3] [maven-release-plugin] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9482a92df..16f65e115 100644 --- a/pom.xml +++ b/pom.xml @@ -9,7 +9,7 @@ io.tarantool cartridge-driver jar - 0.14.3 + 1.0.0-SNAPSHOT From 488076b3a7c5f8a3c171071baa1922b7caa499a2 Mon Sep 17 00:00:00 2001 From: Alexey Kuzin Date: Tue, 16 Sep 2025 03:06:36 +0200 Subject: [PATCH 3/3] Use JDK 11 with release option for JDK 8 --- .github/workflows/tests-ce.yml | 11 ++++++----- .github/workflows/tests-ee.yml | 9 +++++---- pom.xml | 14 ++++++-------- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/.github/workflows/tests-ce.yml b/.github/workflows/tests-ce.yml index 1d2811d3a..114576f53 100644 --- a/.github/workflows/tests-ce.yml +++ b/.github/workflows/tests-ce.yml @@ -14,18 +14,19 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - tarantool-version: [ "1.x", "2.10.6"] + tarantool-version: [ "1.x", "2.11.6"] fail-fast: false steps: - uses: actions/checkout@v2 - - name: Set up JDK 1.8 - uses: actions/setup-java@v1 + - name: Set up JDK 11 + uses: actions/setup-java@v5 with: - java-version: 1.8 + java-version: 11 + distribution: zulu - name: Cache Maven packages - uses: actions/cache@v2 + uses: actions/cache@v4.2.0 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} diff --git a/.github/workflows/tests-ee.yml b/.github/workflows/tests-ee.yml index 01321d674..69c91ad98 100644 --- a/.github/workflows/tests-ee.yml +++ b/.github/workflows/tests-ee.yml @@ -15,13 +15,14 @@ jobs: steps: - uses: actions/checkout@v2 - - name: Set up JDK 1.8 - uses: actions/setup-java@v1 + - name: Set up JDK 11 + uses: actions/setup-java@v5 with: - java-version: 1.8 + java-version: 11 + distribution: zulu - name: Cache Maven packages - uses: actions/cache@v2 + uses: actions/cache@v4.2.0 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} diff --git a/pom.xml b/pom.xml index 16f65e115..27e3a0172 100644 --- a/pom.xml +++ b/pom.xml @@ -68,16 +68,14 @@ org.apache.maven.plugins maven-compiler-plugin - 3.8.0 + 3.8.1 - 1.8 true true true true true - 8 - 8 + 8 **/package-info.java @@ -96,8 +94,8 @@ - - [1.8.0,) + + [1.11.0,) [3.1.1,) @@ -502,11 +500,11 @@ sonatype-nexus-snapshots - https://oss.sonatype.org/content/repositories/snapshots + https://central.sonatype.com/repository/maven-snapshots/ sonatype-nexus-staging - https://oss.sonatype.org/service/local/staging/deploy/maven2/ + https://ossrh-staging-api.central.sonatype.com/service/local/staging/deploy/maven2/