Skip to content

Commit 98c06a9

Browse files
committed
Merge branch 'v0.24.x'
2 parents 7b0ff8c + 726668a commit 98c06a9

16 files changed

Lines changed: 18 additions & 18 deletions

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666

6767
steps:
6868
- id: checkout
69-
uses: actions/checkout@v6
69+
uses: actions/checkout@v7
7070

7171
- name: Install dependencies
7272
run: |
@@ -199,7 +199,7 @@ jobs:
199199

200200
steps:
201201
- id: checkout
202-
uses: actions/checkout@v6
202+
uses: actions/checkout@v7
203203

204204
- name: Install dependencies
205205
run: |
@@ -266,7 +266,7 @@ jobs:
266266
runs-on: windows-latest
267267
steps:
268268
- id: checkout
269-
uses: actions/checkout@v6
269+
uses: actions/checkout@v7
270270

271271
- uses: msys2/setup-msys2@v2
272272
with:

.github/workflows/build_android.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
runs-on: ubuntu-24.04
4141
steps:
4242
- id: checkout
43-
uses: actions/checkout@v6
43+
uses: actions/checkout@v7
4444

4545
- name: Install dependencies
4646
run: |

.github/workflows/build_mingw.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252

5353
steps:
5454
- id: checkout
55-
uses: actions/checkout@v6
55+
uses: actions/checkout@v7
5656

5757
- name: "Cache third-party libraries"
5858
uses: actions/cache@v5

src/input/plugins/AlsaInputPlugin.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
#include <alsa/asoundlib.h>
2929

30-
#include <fmt/core.h>
30+
#include <fmt/format.h>
3131

3232
#include <cassert>
3333

src/input/plugins/QobuzClient.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#include "lib/crypto/MD5.hxx"
66
#include "thread/ScopeUnlock.hxx"
77

8-
#include <fmt/core.h>
8+
#include <fmt/format.h>
99

1010
#include <cassert>
1111
#include <stdexcept>

src/input/plugins/QobuzLoginRequest.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#include "QobuzSession.hxx"
77
#include "lib/curl/Form.hxx"
88

9-
#include <fmt/core.h>
9+
#include <fmt/format.h>
1010
#include <nlohmann/json.hpp>
1111

1212
#include <cassert>

src/input/plugins/QobuzTrackRequest.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#include "QobuzErrorParser.hxx"
66
#include "QobuzClient.hxx"
77

8-
#include <fmt/core.h>
8+
#include <fmt/format.h>
99
#include <nlohmann/json.hpp>
1010

1111
using std::string_view_literals::operator""sv;

src/lib/avahi/Publisher.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
#include <avahi-common/malloc.h>
1414
#include <avahi-common/alternative.h>
1515

16-
#include <fmt/core.h>
16+
#include <fmt/format.h>
1717

1818
#include <cassert>
1919

src/lib/nfs/FileReader.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
#include <nfsc/libnfs.h> // for struct nfs_stat_64
1212

13-
#include <fmt/core.h>
13+
#include <fmt/format.h>
1414

1515
#include <cassert>
1616
#include <cstring>

src/net/ToString.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#include "IPv4Address.hxx"
77
#include "net/Features.hxx" // for HAVE_TCP, HAVE_IPV6, HAVE_UN
88

9-
#include <fmt/core.h>
9+
#include <fmt/format.h>
1010

1111
#include <algorithm>
1212
#include <cassert>

0 commit comments

Comments
 (0)