Skip to content

Commit

Permalink
Bumping client version to 2.0.1 (#137) (#140)
Browse files Browse the repository at this point in the history
* Bumping version to 2.0.1

Signed-off-by: Vacha Shah <[email protected]>

* Updating and simplifying compatibility matrix

Signed-off-by: Vacha Shah <[email protected]>

* Adding OpenSearch 2.1.0 to compatibility matrix

Signed-off-by: Vacha Shah <[email protected]>
(cherry picked from commit 25a1a6f)
  • Loading branch information
VachaShah authored Jul 26, 2022
1 parent bab13bf commit 3fe247a
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 15 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/test-compatibility.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ jobs:
- { opensearch_version: 1.3.0 }
- { opensearch_version: 1.3.1 }
- { opensearch_version: 2.0.0 }
- { opensearch_version: 2.0.1 }
- { opensearch_version: 2.1.0 }
steps:
- uses: actions/checkout@v2
with: { fetch-depth: 1 }
Expand Down
17 changes: 5 additions & 12 deletions COMPATIBILITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,12 @@

The below matrix shows the compatibility of the [`opensearch-go`](https://pkg.go.dev/github.com/opensearch-project/opensearch-go) with versions of [`OpenSearch`](https://opensearch.org/downloads.html#opensearch).

| OpenSearch Version | Client Version |
| Client Version | OpenSearch Version |
| --- | --- |
| 1.0.0 | 1.0.0 |
| 1.0.1 | 1.0.0 |
| 1.1.0 | 1.1.0 |
| 1.2.0 | 1.1.0 |
| 1.2.1 | 1.1.0 |
| 1.2.2 | 1.1.0 |
| 1.2.3 | 1.1.0 |
| 1.2.4 | 1.1.0 |
| 1.3.0 | 1.1.0 |
| 1.3.1 | 1.1.0 |
| 2.0.0 | 2.0.0 |
| 1.0.0 | 1.0.0-1.0.1 |
| 1.1.0 | 1.1.0-1.3.1 |
| 2.0.0 | 2.0.0-2.1.0 |
| 2.0.1 | 2.0.0-2.1.0 |

## Upgrading

Expand Down
2 changes: 1 addition & 1 deletion internal/build/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ replace github.com/opensearch-project/opensearch-go/v2 => ../../

require (
github.com/alecthomas/chroma v0.8.2
github.com/opensearch-project/opensearch-go/v2 v2.0.0
github.com/opensearch-project/opensearch-go/v2 v2.0.1
github.com/spf13/cobra v1.1.3
golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2
golang.org/x/tools v0.1.0
Expand Down
2 changes: 1 addition & 1 deletion internal/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ package version

// Client returns the client version as a string.
//
const Client = "2.0.0"
const Client = "2.0.1"
2 changes: 1 addition & 1 deletion opensearchapi/test/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ go 1.11
replace github.com/opensearch-project/opensearch-go/v2 => ../../

require (
github.com/opensearch-project/opensearch-go/v2 v2.0.0
github.com/opensearch-project/opensearch-go/v2 v2.0.1

gopkg.in/yaml.v2 v2.4.0
)

0 comments on commit 3fe247a

Please sign in to comment.