Skip to content

Commit 8a6dbaa

Browse files
Updates bump action in make.sh for 8.5 (#1265)
* Updates bump action in make.sh for 8.5 unified-release.yml is only present in main * Bumps 8.5 to 8.5.2
1 parent 112298b commit 8a6dbaa

File tree

4 files changed

+4
-7
lines changed

4 files changed

+4
-7
lines changed

.ci/make.sh

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -161,9 +161,6 @@ if [[ "$CMD" == "bump" ]]; then
161161
# Change version to src/Client.php
162162
sed -i "s/const VERSION = '[0-9]\+\.[0-9]\+\.[0-9]\+'/const VERSION = '$VERSION'/" $repo/src/Client.php
163163

164-
# Change version to .github/workflows/unified-release.yml
165-
sed -i "s/[0-9]\+\.[0-9]\+\.[0-9]\+-SNAPSHOT/$VERSION-SNAPSHOT/" $repo/.github/workflows/unified-release.yml
166-
167164
MINOR_VERSION=`echo $VERSION | grep -Eo "[0-9]+.[0-9]+"`
168165

169166
# Change version to .ci/test-matrix.yml
@@ -183,4 +180,4 @@ fi
183180

184181
if [[ "$CMD" == "examplesgen" ]]; then
185182
echo "TODO"
186-
fi
183+
fi

.ci/test-matrix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
STACK_VERSION:
3-
- 8.4-SNAPSHOT
3+
- 8.5-SNAPSHOT
44

55
PHP_VERSION:
66
- 8.1-cli

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
matrix:
1212
php-version: [7.4, 8.0, 8.1]
1313
os: [ubuntu-latest]
14-
es-version: [8.4-SNAPSHOT]
14+
es-version: [8.5-SNAPSHOT]
1515

1616
steps:
1717
- name: Checkout

src/Client.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
final class Client implements ClientInterface
2929
{
3030
const CLIENT_NAME = 'es';
31-
const VERSION = '8.5.1';
31+
const VERSION = '8.5.2';
3232
const API_COMPATIBILITY_HEADER = '%s/vnd.elasticsearch+%s; compatible-with=8';
3333

3434
use ClientEndpointsTrait;

0 commit comments

Comments
 (0)