Skip to content

Commit a8bb3d3

Browse files
author
Distiller
committed
[0.70.0-rc.1] Bump version numbers
1 parent 5fc88e9 commit a8bb3d3

8 files changed

Lines changed: 9 additions & 9 deletions

File tree

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ GEM
7676
ruby-macho (2.5.1)
7777
typhoeus (1.4.0)
7878
ethon (>= 0.9.0)
79-
tzinfo (2.0.4)
79+
tzinfo (2.0.5)
8080
concurrent-ruby (~> 1.0)
8181
xcodeproj (1.22.0)
8282
CFPropertyList (>= 2.3.3, < 4.0)

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: 70,
1515
patch: 0,
16-
prerelease: 'rc.0',
16+
prerelease: 'rc.1',
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: @(70),
2626
RCTVersionPatch: @(0),
27-
RCTVersionPrerelease: @"rc.0",
27+
RCTVersionPrerelease: @"rc.1",
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.70.0-rc.0
1+
VERSION_NAME=0.70.0-rc.1
22
GROUP=com.facebook.react
33

44
POM_NAME=ReactNative

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", 70,
2020
"patch", 0,
21-
"prerelease", "rc.0");
21+
"prerelease", "rc.1");
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 = 70;
2020
int32_t Patch = 0;
21-
std::string_view Prerelease = "rc.0";
21+
std::string_view Prerelease = "rc.1";
2222
} ReactNativeVersion;
2323

2424
} // namespace facebook::react

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native",
3-
"version": "0.70.0-rc.0",
3+
"version": "0.70.0-rc.1",
44
"bin": "./cli.js",
55
"description": "A framework for building native apps using React",
66
"license": "MIT",
@@ -140,7 +140,7 @@
140140
"@babel/generator": "^7.14.0",
141141
"@babel/plugin-transform-regenerator": "^7.0.0",
142142
"@react-native-community/eslint-plugin": "*",
143-
"@react-native/eslint-plugin-specs": ">0.0.2",
143+
"@react-native/eslint-plugin-specs": "^0.70.0",
144144
"@reactions/component": "^2.0.2",
145145
"async": "^3.2.2",
146146
"clang-format": "^1.2.4",

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.1.0",
14-
"react-native": "0.70.0-rc.0"
14+
"react-native": "0.70.0-rc.1"
1515
},
1616
"devDependencies": {
1717
"@babel/core": "^7.12.9",

0 commit comments

Comments
 (0)