Skip to content

Commit 86e2acd

Browse files
committed
Increment version to 2.20.0-SNAPSHOT
Signed-off-by: Kunal Kotwani <kkotwani@amazon.com>
1 parent 583a6e2 commit 86e2acd

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/backwards_compatibility_tests_workflow.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ jobs:
3434
strategy:
3535
matrix:
3636
java: [ 11, 17 ]
37-
bwc_version : [ "1.1.0", "1.2.4", "1.3.8", "2.0.1", "2.1.0", "2.2.1", "2.3.0", "2.4.1", "2.5.0", "2.6.0", "2.7.0", "2.8.0", "2.9.0", "2.10.0", "2.11.0", "2.12.0", "2.13.0", "2.14.0", "2.15.0", "2.16.0", "2.17.0", "2.18.0" ]
38-
opensearch_version : [ "2.19.0-SNAPSHOT" ]
37+
bwc_version : [ "1.1.0", "1.2.4", "1.3.8", "2.0.1", "2.1.0", "2.2.1", "2.3.0", "2.4.1", "2.5.0", "2.6.0", "2.7.0", "2.8.0", "2.9.0", "2.10.0", "2.11.0", "2.12.0", "2.13.0", "2.14.0", "2.15.0", "2.16.0", "2.17.0", "2.18.0", "2.19.0" ]
38+
opensearch_version : [ "2.20.0-SNAPSHOT" ]
3939

4040
name: k-NN Restart-Upgrade BWC Tests
4141
runs-on: ubuntu-latest
@@ -88,8 +88,8 @@ jobs:
8888
strategy:
8989
matrix:
9090
java: [ 11, 17 ]
91-
bwc_version: [ "1.3.8", "2.0.1", "2.1.0", "2.2.1", "2.3.0", "2.4.1", "2.5.0", "2.6.0", "2.7.0", "2.8.0", "2.9.0", "2.10.0", "2.11.0", "2.12.0", "2.13.0", "2.14.0", "2.15.0", "2.16.0", "2.17.0", "2.18.0"]
92-
opensearch_version: [ "2.19.0-SNAPSHOT" ]
91+
bwc_version: [ "1.3.8", "2.0.1", "2.1.0", "2.2.1", "2.3.0", "2.4.1", "2.5.0", "2.6.0", "2.7.0", "2.8.0", "2.9.0", "2.10.0", "2.11.0", "2.12.0", "2.13.0", "2.14.0", "2.15.0", "2.16.0", "2.17.0", "2.18.0", "2.19.0"]
92+
opensearch_version: [ "2.20.0-SNAPSHOT" ]
9393

9494
name: k-NN Rolling-Upgrade BWC Tests
9595
runs-on: ubuntu-latest

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ buildscript {
1515
ext {
1616
// build.version_qualifier parameter applies to knn plugin artifacts only. OpenSearch version must be set
1717
// explicitly as 'opensearch.version' property, for instance opensearch.version=2.0.0-rc1-SNAPSHOT
18-
opensearch_version = System.getProperty("opensearch.version", "2.19.0-SNAPSHOT")
18+
opensearch_version = System.getProperty("opensearch.version", "2.20.0-SNAPSHOT")
1919
version_qualifier = System.getProperty("build.version_qualifier", "")
2020
opensearch_group = "org.opensearch"
2121
isSnapshot = "true" == System.getProperty("build.snapshot", "true")

qa/restart-upgrade/src/test/java/org/opensearch/knn/bwc/ModelIT.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public class ModelIT extends AbstractRestartUpgradeTestCase {
5353
private static final int DELAY_MILLI_SEC = 1000;
5454
private static final int MIN_NUM_OF_MODELS = 2;
5555
private static final int K = 5;
56-
private static final int NUM_DOCS = 10;
56+
private static final int NUM_DOCS = 1001;
5757
private static final int NUM_DOCS_TEST_MODEL_INDEX = 100;
5858
private static final int NUM_DOCS_TEST_MODEL_INDEX_DEFAULT = 100;
5959
private static final int NUM_DOCS_TEST_MODEL_INDEX_FOR_NON_KNN_INDEX = 100;

0 commit comments

Comments
 (0)