Skip to content

Commit

Permalink
Increment version to 1.3.7
Browse files Browse the repository at this point in the history
Signed-off-by: Naveen <[email protected]>
  • Loading branch information
naveentatikonda committed Dec 2, 2022
1 parent a4a0d87 commit 5415a08
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Run build
run: |
./gradlew build -Dopensearch.version=1.3.6-SNAPSHOT
./gradlew build -Dopensearch.version=1.3.7-SNAPSHOT
- name: Run k-NN Backwards Compatibility Tests
run: |
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import org.opensearch.gradle.test.RestIntegTestTask

buildscript {
ext {
opensearch_version = System.getProperty("opensearch.version", "1.3.6-SNAPSHOT")
opensearch_version = System.getProperty("opensearch.version", "1.3.7-SNAPSHOT")
knn_bwc_version = System.getProperty("bwc.version", "1.2.0.0-SNAPSHOT")
opensearch_bwc_version = "${knn_bwc_version}" - ".0-SNAPSHOT"
opensearch_group = "org.opensearch"
Expand Down Expand Up @@ -433,7 +433,7 @@ afterEvaluate {

requires('opensearch', versions.opensearch, EQUAL)
//TODO: Use default knn lib version for now, fix will be compare with version that is used in build step.
requires("opensearch-knnlib", "1.3.6.0", EQUAL)
requires("opensearch-knnlib", "1.3.7.0", EQUAL)
packager = 'Amazon'
vendor = 'Amazon'
os = 'LINUX'
Expand Down
2 changes: 1 addition & 1 deletion jni/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ else()
endif()

if(NOT KNN_PLUGIN_VERSION)
set(KNN_PLUGIN_VERSION "1.3.6.0")
set(KNN_PLUGIN_VERSION "1.3.7.0")
endif()

# Set architecture specific variables
Expand Down

0 comments on commit 5415a08

Please sign in to comment.