Skip to content

Commit

Permalink
Merge branch 'main' into szabosteve/8.9.gs.backport
Browse files Browse the repository at this point in the history
  • Loading branch information
szabosteve committed Jul 4, 2023
2 parents d489253 + 30c119e commit 2f5d569
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .ci/test-matrix.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
STACK_VERSION:
- "8.9.0-SNAPSHOT"
- "8.10.0-SNAPSHOT"

TEST_SUITE:
- platinum
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unified-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
name: Assemble
runs-on: ubuntu-latest
env:
STACK_VERSION: "8.9-SNAPSHOT"
STACK_VERSION: "8.10-SNAPSHOT"
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion elasticsearch/_async/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def aiter(x: Union[Iterable[T], AsyncIterable[T]]) -> AsyncIterator[T]:

async def f() -> AsyncIterable[T]:
nonlocal x
ix: Iterable[T] = x # type: ignore[assignment]
ix: Iterable[T] = x
for item in ix:
yield item

Expand Down
2 changes: 1 addition & 1 deletion elasticsearch/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
# specific language governing permissions and limitations
# under the License.

__versionstr__ = "8.9.0"
__versionstr__ = "8.10.0"

0 comments on commit 2f5d569

Please sign in to comment.