Skip to content

Commit c79b119

Browse files
authored
Bump client version to 2.1.0 (#150)
1 parent 25a1a6f commit c79b119

File tree

5 files changed

+6
-3
lines changed

5 files changed

+6
-3
lines changed

.github/workflows/test-compatibility.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,11 @@ jobs:
2020
- { opensearch_version: 1.3.1 }
2121
- { opensearch_version: 1.3.2 }
2222
- { opensearch_version: 1.3.3 }
23+
- { opensearch_version: 1.3.4 }
2324
- { opensearch_version: 2.0.0 }
2425
- { opensearch_version: 2.0.1 }
2526
- { opensearch_version: 2.1.0 }
27+
- { opensearch_version: 2.2.0 }
2628
steps:
2729
- uses: actions/checkout@v2
2830
with: { fetch-depth: 1 }

COMPATIBILITY.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ The below matrix shows the compatibility of the [`opensearch-go`](https://pkg.go
1111
| 1.1.0 | 1.1.0-1.3.1 |
1212
| 2.0.0 | 2.0.0-2.1.0 |
1313
| 2.0.1 | 2.0.0-2.1.0 |
14+
| 2.1.0 | 2.0.0-2.2.0 |
1415

1516
## Upgrading
1617

internal/build/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ replace github.com/opensearch-project/opensearch-go/v2 => ../../
66

77
require (
88
github.com/alecthomas/chroma v0.8.2
9-
github.com/opensearch-project/opensearch-go/v2 v2.0.1
9+
github.com/opensearch-project/opensearch-go/v2 v2.1.0
1010
github.com/spf13/cobra v1.1.3
1111
golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2
1212
golang.org/x/tools v0.1.0

internal/version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ package version
2828

2929
// Client returns the client version as a string.
3030
//
31-
const Client = "2.0.1"
31+
const Client = "2.1.0"

opensearchapi/test/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.11
55
replace github.com/opensearch-project/opensearch-go/v2 => ../../
66

77
require (
8-
github.com/opensearch-project/opensearch-go/v2 v2.0.1
8+
github.com/opensearch-project/opensearch-go/v2 v2.1.0
99

1010
gopkg.in/yaml.v2 v2.4.0
1111
)

0 commit comments

Comments
 (0)