Skip to content

Commit 3fa098e

Browse files
committed
Bump version to 0.71.2-alpha.3
1 parent 24a7477 commit 3fa098e

File tree

8 files changed

+17
-19
lines changed

8 files changed

+17
-19
lines changed

Gemfile.lock

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,39 +3,38 @@ GEM
33
specs:
44
CFPropertyList (3.0.6)
55
rexml
6-
activesupport (6.1.7.2)
6+
activesupport (7.0.4.3)
77
concurrent-ruby (~> 1.0, >= 1.0.2)
88
i18n (>= 1.6, < 2)
99
minitest (>= 5.1)
1010
tzinfo (~> 2.0)
11-
zeitwerk (~> 2.3)
1211
addressable (2.8.1)
1312
public_suffix (>= 2.0.2, < 6.0)
1413
algoliasearch (1.27.5)
1514
httpclient (~> 2.8, >= 2.8.3)
1615
json (>= 1.5.1)
1716
atomos (0.1.3)
1817
claide (1.1.0)
19-
cocoapods (1.11.3)
18+
cocoapods (1.12.0)
2019
addressable (~> 2.8)
2120
claide (>= 1.0.2, < 2.0)
22-
cocoapods-core (= 1.11.3)
21+
cocoapods-core (= 1.12.0)
2322
cocoapods-deintegrate (>= 1.0.3, < 2.0)
24-
cocoapods-downloader (>= 1.4.0, < 2.0)
23+
cocoapods-downloader (>= 1.6.0, < 2.0)
2524
cocoapods-plugins (>= 1.0.0, < 2.0)
2625
cocoapods-search (>= 1.0.0, < 2.0)
27-
cocoapods-trunk (>= 1.4.0, < 2.0)
26+
cocoapods-trunk (>= 1.6.0, < 2.0)
2827
cocoapods-try (>= 1.1.0, < 2.0)
2928
colored2 (~> 3.1)
3029
escape (~> 0.0.4)
3130
fourflusher (>= 2.3.0, < 3.0)
3231
gh_inspector (~> 1.0)
3332
molinillo (~> 0.8.0)
3433
nap (~> 1.0)
35-
ruby-macho (>= 1.0, < 3.0)
34+
ruby-macho (>= 2.3.0, < 3.0)
3635
xcodeproj (>= 1.21.0, < 2.0)
37-
cocoapods-core (1.11.3)
38-
activesupport (>= 5.0, < 7)
36+
cocoapods-core (1.12.0)
37+
activesupport (>= 5.0, < 8)
3938
addressable (~> 2.8)
4039
algoliasearch (~> 1.0)
4140
concurrent-ruby (~> 1.1)
@@ -54,7 +53,7 @@ GEM
5453
netrc (~> 0.11)
5554
cocoapods-try (1.2.0)
5655
colored2 (3.1.2)
57-
concurrent-ruby (1.2.0)
56+
concurrent-ruby (1.2.2)
5857
escape (0.0.4)
5958
ethon (0.16.0)
6059
ffi (>= 1.15.0)
@@ -66,7 +65,7 @@ GEM
6665
i18n (1.12.0)
6766
concurrent-ruby (~> 1.0)
6867
json (2.6.3)
69-
minitest (5.17.0)
68+
minitest (5.18.0)
7069
molinillo (0.8.0)
7170
nanaimo (0.3.0)
7271
nap (1.1.0)
@@ -85,7 +84,6 @@ GEM
8584
colored2 (~> 3.1)
8685
nanaimo (~> 0.3.0)
8786
rexml (~> 3.2.4)
88-
zeitwerk (2.6.7)
8987

9088
PLATFORMS
9189
ruby

Libraries/Core/ReactNativeVersion.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ exports.version = {
1313
major: 0,
1414
minor: 71,
1515
patch: 2,
16-
prerelease: 'alpha.2',
16+
prerelease: 'alpha.3',
1717
};

React/Base/RCTVersion.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
RCTVersionMajor: @(0),
2525
RCTVersionMinor: @(71),
2626
RCTVersionPatch: @(2),
27-
RCTVersionPrerelease: @"alpha.2",
27+
RCTVersionPrerelease: @"alpha.3",
2828
};
2929
});
3030
return __rnVersion;

ReactAndroid/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION_NAME=0.71.2-alpha.2
1+
VERSION_NAME=0.71.2-alpha.3
22
GROUP=com.facebook.react
33

44
# JVM Versions

ReactAndroid/src/main/java/com/facebook/react/modules/systeminfo/ReactNativeVersion.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ public class ReactNativeVersion {
1818
"major", 0,
1919
"minor", 71,
2020
"patch", 2,
21-
"prerelease", "alpha.2");
21+
"prerelease", "alpha.3");
2222
}

ReactCommon/cxxreact/ReactNativeVersion.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ constexpr struct {
1818
int32_t Major = 0;
1919
int32_t Minor = 71;
2020
int32_t Patch = 2;
21-
std::string_view Prerelease = "alpha.2";
21+
std::string_view Prerelease = "alpha.3";
2222
} ReactNativeVersion;
2323

2424
} // namespace facebook::react

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@expensify/react-native",
3-
"version": "0.71.2-alpha.2",
3+
"version": "0.71.2-alpha.3",
44
"bin": "./cli.js",
55
"description": "A framework for building native apps using React",
66
"license": "MIT",

template/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
},
1212
"dependencies": {
1313
"react": "18.2.0",
14-
"react-native": "0.71.2-alpha.2"
14+
"react-native": "0.71.2-alpha.3"
1515
},
1616
"devDependencies": {
1717
"@babel/core": "^7.20.0",

0 commit comments

Comments
 (0)