Skip to content

Commit cc22d5d

Browse files
Update versions for v1.11.12 (#3470)
Co-authored-by: Darioush Jalali <[email protected]>
1 parent b9e2af2 commit cc22d5d

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ jobs:
197197
- name: Install qemu (required for cross-platform builds)
198198
run: |
199199
sudo apt update
200-
sudo apt -y install qemu qemu-user-static
200+
sudo apt -y install qemu-system qemu-user-static
201201
- name: Check image build
202202
shell: bash
203203
run: bash -x scripts/tests.build_image.sh

.github/workflows/publish_docker_image.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Install qemu (required for cross-platform builds)
1818
run: |
1919
sudo apt update
20-
sudo apt -y install qemu qemu-user-static
20+
sudo apt -y install qemu-system qemu-user-static
2121
sudo systemctl restart docker
2222
- name: Create multiplatform docker builder
2323
run: docker buildx create --use

version/compatibility.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"37": [
3-
"v1.11.11"
3+
"v1.11.11",
4+
"v1.11.12"
45
],
56
"36": [
67
"v1.11.10"

version/constants.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ var (
2323
Current = &Semantic{
2424
Major: 1,
2525
Minor: 11,
26-
Patch: 11,
26+
Patch: 12,
2727
}
2828
CurrentApp = &Application{
2929
Name: Client,

0 commit comments

Comments
 (0)