Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit c012726

Browse files
author
Distiller
committedJul 15, 2022
[0.70.0-rc.0] Bump version numbers
1 parent 8c682dd commit c012726

File tree

8 files changed

+66
-33
lines changed

8 files changed

+66
-33
lines changed
 

‎Gemfile.lock

+9-9
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ GEM
33
specs:
44
CFPropertyList (3.0.5)
55
rexml
6-
activesupport (6.1.5)
6+
activesupport (6.1.6.1)
77
concurrent-ruby (~> 1.0, >= 1.0.2)
88
i18n (>= 1.6, < 2)
99
minitest (>= 5.1)
@@ -45,7 +45,7 @@ GEM
4545
public_suffix (~> 4.0)
4646
typhoeus (~> 1.0)
4747
cocoapods-deintegrate (1.0.5)
48-
cocoapods-downloader (1.6.1)
48+
cocoapods-downloader (1.6.3)
4949
cocoapods-plugins (1.0.0)
5050
nap
5151
cocoapods-search (1.0.1)
@@ -63,29 +63,29 @@ GEM
6363
fuzzy_match (2.0.4)
6464
gh_inspector (1.1.3)
6565
httpclient (2.8.3)
66-
i18n (1.10.0)
66+
i18n (1.12.0)
6767
concurrent-ruby (~> 1.0)
68-
json (2.6.1)
69-
minitest (5.15.0)
68+
json (2.6.2)
69+
minitest (5.16.2)
7070
molinillo (0.8.0)
7171
nanaimo (0.3.0)
7272
nap (1.1.0)
7373
netrc (0.11.0)
74-
public_suffix (4.0.6)
74+
public_suffix (4.0.7)
7575
rexml (3.2.5)
7676
ruby-macho (2.5.1)
7777
typhoeus (1.4.0)
7878
ethon (>= 0.9.0)
7979
tzinfo (2.0.4)
8080
concurrent-ruby (~> 1.0)
81-
xcodeproj (1.21.0)
81+
xcodeproj (1.22.0)
8282
CFPropertyList (>= 2.3.3, < 4.0)
8383
atomos (~> 0.1.3)
8484
claide (>= 1.0.2, < 2.0)
8585
colored2 (~> 3.1)
8686
nanaimo (~> 0.3.0)
8787
rexml (~> 3.2.4)
88-
zeitwerk (2.5.4)
88+
zeitwerk (2.6.0)
8989

9090
PLATFORMS
9191
ruby
@@ -97,4 +97,4 @@ RUBY VERSION
9797
ruby 2.7.5p203
9898

9999
BUNDLED WITH
100-
2.3.10
100+
2.3.11

‎Libraries/Core/ReactNativeVersion.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
/**
2+
* @generated by scripts/set-rn-version.js
3+
*
24
* Copyright (c) Meta Platforms, Inc. and affiliates.
35
*
46
* This source code is licensed under the MIT license found in the
57
* LICENSE file in the root directory of this source tree.
68
*
7-
* @format
8-
* @generated by scripts/set-rn-version.js
99
* @flow strict
1010
*/
1111

1212
exports.version = {
1313
major: 0,
14-
minor: 0,
14+
minor: 70,
1515
patch: 0,
16-
prerelease: null,
16+
prerelease: 'rc.0',
1717
};

‎React/Base/RCTVersion.m

+5-5
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@
2121
static dispatch_once_t onceToken;
2222
dispatch_once(&onceToken, ^(void){
2323
__rnVersion = @{
24-
RCTVersionMajor: @(0),
25-
RCTVersionMinor: @(0),
26-
RCTVersionPatch: @(0),
27-
RCTVersionPrerelease: [NSNull null],
28-
};
24+
RCTVersionMajor: @(0),
25+
RCTVersionMinor: @(70),
26+
RCTVersionPatch: @(0),
27+
RCTVersionPrerelease: @"rc.0",
28+
};
2929
});
3030
return __rnVersion;
3131
}

‎ReactAndroid/gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION_NAME=1000.0.0-main
1+
VERSION_NAME=0.70.0-rc.0
22
GROUP=com.facebook.react
33

44
POM_NAME=ReactNative

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
public class ReactNativeVersion {
1717
public static final Map<String, Object> VERSION = MapBuilder.<String, Object>of(
1818
"major", 0,
19-
"minor", 0,
19+
"minor", 70,
2020
"patch", 0,
21-
"prerelease", null);
21+
"prerelease", "rc.0");
2222
}

‎ReactCommon/cxxreact/ReactNativeVersion.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ namespace facebook::react {
1616

1717
constexpr struct {
1818
int32_t Major = 0;
19-
int32_t Minor = 0;
19+
int32_t Minor = 70;
2020
int32_t Patch = 0;
21-
std::string_view Prerelease = "";
21+
std::string_view Prerelease = "rc.0";
2222
} ReactNativeVersion;
2323

2424
} // namespace facebook::react

‎package.json

+42-9
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"name": "react-native",
3-
"private": true,
4-
"version": "1000.0.0",
3+
"version": "0.70.0-rc.0",
54
"bin": "./cli.js",
65
"description": "A framework for building native apps using React",
76
"license": "MIT",
@@ -94,10 +93,6 @@
9493
"test-android-e2e": "yarn run docker-build-android && yarn run test-android-run-e2e",
9594
"test-ios": "./scripts/objc-test.sh test"
9695
},
97-
"workspaces": [
98-
"packages/!(eslint-config-react-native-community)",
99-
"repo-config"
100-
],
10196
"peerDependencies": {
10297
"react": "18.1.0"
10398
},
@@ -132,13 +127,51 @@
132127
"stacktrace-parser": "^0.1.3",
133128
"use-sync-external-store": "^1.0.0",
134129
"whatwg-fetch": "^3.0.0",
135-
"ws": "^6.1.4"
130+
"ws": "^6.1.4",
131+
"react-native-codegen": "^0.70.3"
136132
},
137133
"devDependencies": {
138134
"flow-bin": "^0.182.0",
139135
"hermes-eslint": "0.8.0",
140136
"react": "18.1.0",
141-
"react-test-renderer": "^18.1.0"
137+
"react-test-renderer": "18.1.0",
138+
"@babel/core": "^7.14.0",
139+
"@babel/eslint-parser": "^7.18.2",
140+
"@babel/generator": "^7.14.0",
141+
"@babel/plugin-transform-regenerator": "^7.0.0",
142+
"@react-native-community/eslint-plugin": "*",
143+
"@react-native/eslint-plugin-specs": ">0.0.2",
144+
"@reactions/component": "^2.0.2",
145+
"async": "^3.2.2",
146+
"clang-format": "^1.2.4",
147+
"connect": "^3.6.5",
148+
"coveralls": "^3.1.1",
149+
"eslint": "^7.32.0",
150+
"eslint-config-fb-strict": "^26.0.0",
151+
"eslint-config-fbjs": "^3.1.1",
152+
"eslint-config-prettier": "^8.3.0",
153+
"eslint-plugin-babel": "^5.3.1",
154+
"eslint-plugin-eslint-comments": "^3.2.0",
155+
"eslint-plugin-flowtype": "^7.0.0",
156+
"eslint-plugin-jest": "^25.2.4",
157+
"eslint-plugin-jsx-a11y": "^6.4.1",
158+
"eslint-plugin-prettier": "^4.0.0",
159+
"eslint-plugin-react": "^7.26.1",
160+
"eslint-plugin-react-hooks": "^4.2.0",
161+
"eslint-plugin-react-native": "^3.11.0",
162+
"eslint-plugin-relay": "^1.8.2",
163+
"inquirer": "^7.1.0",
164+
"jest": "^26.6.3",
165+
"jest-junit": "^10.0.0",
166+
"jscodeshift": "^0.13.1",
167+
"metro-babel-register": "0.71.3",
168+
"metro-memory-fs": "0.71.3",
169+
"mkdirp": "^0.5.1",
170+
"prettier": "^2.4.1",
171+
"shelljs": "^0.8.5",
172+
"signedsource": "^1.0.0",
173+
"ws": "^6.1.4",
174+
"yargs": "^15.3.1"
142175
},
143176
"codegenConfig": {
144177
"libraries": [
@@ -158,4 +191,4 @@
158191
}
159192
]
160193
}
161-
}
194+
}

‎template/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
},
1212
"dependencies": {
1313
"react": "18.1.0",
14-
"react-native": "1000.0.0"
14+
"react-native": "0.70.0-rc.0"
1515
},
1616
"devDependencies": {
1717
"@babel/core": "^7.12.9",

0 commit comments

Comments
 (0)
Please sign in to comment.