Skip to content

Commit bfa2a47

Browse files
committed
Update fmt library version to 12.1.0
Follow-up to - #47033 - #50431 Resolve: #55601
1 parent 3a2d5a2 commit bfa2a47

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

packages/react-native/gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ yoga-proguard-annotations = "1.19.0"
4444
boost="1_83_0"
4545
doubleconversion="1.1.6"
4646
fastFloat="8.0.0"
47-
fmt="11.0.2"
47+
fmt="12.1.0"
4848
folly="2024.11.18.00"
4949
glog="0.3.5"
5050
gflags="2.2.0"

packages/react-native/third-party-podspecs/RCT-Folly.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Pod::Spec.new do |spec|
2525
spec.dependency "DoubleConversion"
2626
spec.dependency "glog"
2727
spec.dependency "fast_float", "8.0.0"
28-
spec.dependency "fmt", "11.0.2"
28+
spec.dependency "fmt", "12.1.0"
2929
spec.compiler_flags = '-Wno-documentation -faligned-new'
3030
spec.source_files = 'folly/String.cpp',
3131
'folly/Conv.cpp',

packages/react-native/third-party-podspecs/fmt.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ fmt_git_url = fmt_config[:git]
88

99
Pod::Spec.new do |spec|
1010
spec.name = "fmt"
11-
spec.version = "11.0.2"
11+
spec.version = "12.1.0"
1212
spec.license = { :type => "MIT" }
1313
spec.homepage = "https://github.com/fmtlib/fmt"
1414
spec.summary = "{fmt} is an open-source formatting library for C++. It can be used as a safe and fast alternative to (s)printf and iostreams."
1515
spec.authors = "The fmt contributors"
1616
spec.source = {
1717
:git => fmt_git_url,
18-
:tag => "11.0.2"
18+
:tag => "12.1.0"
1919
}
2020
spec.pod_target_xcconfig = {
2121
"CLANG_CXX_LANGUAGE_STANDARD" => rct_cxx_language_standard(),

scripts/releases/ios-prebuild/configuration.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,9 @@ const dependencies /*: $ReadOnlyArray<Dependency> */ = [
8080
},
8181
{
8282
name: 'fmt',
83-
version: '11.0.2',
83+
version: '12.1.0',
8484
url: new URL(
85-
'https://github.com/fmtlib/fmt/archive/refs/tags/11.0.2.tar.gz',
85+
'https://github.com/fmtlib/fmt/archive/refs/tags/12.1.0.tar.gz',
8686
),
8787
files: {
8888
sources: ['src/format.cc', 'include/fmt/*.h'],

0 commit comments

Comments
 (0)