Skip to content

Commit 9cb7b44

Browse files
author
Distiller
committed
[0.72.0-rc.2] Bump version numbers
1 parent 5d7c34c commit 9cb7b44

File tree

9 files changed

+593
-694
lines changed

9 files changed

+593
-694
lines changed

Gemfile.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,17 @@ GEM
88
i18n (>= 1.6, < 2)
99
minitest (>= 5.1)
1010
tzinfo (~> 2.0)
11-
addressable (2.8.3)
11+
addressable (2.8.4)
1212
public_suffix (>= 2.0.2, < 6.0)
1313
algoliasearch (1.27.5)
1414
httpclient (~> 2.8, >= 2.8.3)
1515
json (>= 1.5.1)
1616
atomos (0.1.3)
1717
claide (1.1.0)
18-
cocoapods (1.12.0)
18+
cocoapods (1.12.1)
1919
addressable (~> 2.8)
2020
claide (>= 1.0.2, < 2.0)
21-
cocoapods-core (= 1.12.0)
21+
cocoapods-core (= 1.12.1)
2222
cocoapods-deintegrate (>= 1.0.3, < 2.0)
2323
cocoapods-downloader (>= 1.6.0, < 2.0)
2424
cocoapods-plugins (>= 1.0.0, < 2.0)
@@ -33,7 +33,7 @@ GEM
3333
nap (~> 1.0)
3434
ruby-macho (>= 2.3.0, < 3.0)
3535
xcodeproj (>= 1.21.0, < 2.0)
36-
cocoapods-core (1.12.0)
36+
cocoapods-core (1.12.1)
3737
activesupport (>= 5.0, < 8)
3838
addressable (~> 2.8)
3939
algoliasearch (~> 1.0)
@@ -62,7 +62,7 @@ GEM
6262
fuzzy_match (2.0.4)
6363
gh_inspector (1.1.3)
6464
httpclient (2.8.3)
65-
i18n (1.12.0)
65+
i18n (1.13.0)
6666
concurrent-ruby (~> 1.0)
6767
json (2.6.3)
6868
minitest (5.18.0)

packages/react-native/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: 72,
1515
patch: 0,
16-
prerelease: 'rc.1',
16+
prerelease: 'rc.2',
1717
};

packages/react-native/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: @(72),
2626
RCTVersionPatch: @(0),
27-
RCTVersionPrerelease: @"rc.1",
27+
RCTVersionPrerelease: @"rc.2",
2828
};
2929
});
3030
return __rnVersion;

packages/react-native/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.72.0-rc.1
1+
VERSION_NAME=0.72.0-rc.2
22
GROUP=com.facebook.react
33

44
# JVM Versions

packages/react-native/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", 72,
2020
"patch", 0,
21-
"prerelease", "rc.1");
21+
"prerelease", "rc.2");
2222
}

packages/react-native/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 = 72;
2020
int32_t Patch = 0;
21-
std::string_view Prerelease = "rc.1";
21+
std::string_view Prerelease = "rc.2";
2222
} ReactNativeVersion;
2323

2424
} // namespace facebook::react

packages/react-native/package.json

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

packages/react-native/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.72.0-rc.1"
14+
"react-native": "0.72.0-rc.2"
1515
},
1616
"devDependencies": {
1717
"@babel/core": "^7.20.0",

0 commit comments

Comments
 (0)