Skip to content

Commit e18cf90

Browse files
author
Luna Wei
committed
[0.67.0-rc.0] Bump version numbers
1 parent 07c454b commit e18cf90

File tree

14 files changed

+642
-606
lines changed

14 files changed

+642
-606
lines changed

Diff for: .ruby-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.7.4
1+
2.6.3

Diff for: Gemfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
source 'https://rubygems.org'
22

33
# You may use http://rbenv.org/ or https://rvm.io/ to install and use this version
4-
ruby '2.7.4'
4+
ruby '2.6.3'
55

66
gem 'cocoapods', '~> 1.11', '>= 1.11.2'

Diff for: Gemfile.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ GEM
5656
colored2 (3.1.2)
5757
concurrent-ruby (1.1.9)
5858
escape (0.0.4)
59-
ethon (0.14.0)
59+
ethon (0.15.0)
6060
ffi (>= 1.15.0)
6161
ffi (1.15.4)
6262
fourflusher (2.3.1)
@@ -65,7 +65,7 @@ GEM
6565
httpclient (2.8.3)
6666
i18n (1.8.10)
6767
concurrent-ruby (~> 1.0)
68-
json (2.5.1)
68+
json (2.6.0)
6969
minitest (5.14.4)
7070
molinillo (0.8.0)
7171
nanaimo (0.3.0)
@@ -94,7 +94,7 @@ DEPENDENCIES
9494
cocoapods (~> 1.11, >= 1.11.2)
9595

9696
RUBY VERSION
97-
ruby 2.7.4p191
97+
ruby 2.6.3p62
9898

9999
BUNDLED WITH
100-
2.2.28
100+
1.17.2

Diff for: Libraries/Core/ReactNativeVersion.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
/**
2+
* @generated by scripts/bump-oss-version.js
3+
*
24
* Copyright (c) Facebook, Inc. and its 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/bump-oss-version.js
99
* @flow strict
1010
*/
1111

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

Diff for: 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: @(67),
26+
RCTVersionPatch: @(0),
27+
RCTVersionPrerelease: @"rc.0",
28+
};
2929
});
3030
return __rnVersion;
3131
}

Diff for: 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.67.0-rc.0
22
GROUP=com.facebook.react
33

44
POM_NAME=ReactNative

Diff for: 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", 67,
2020
"patch", 0,
21-
"prerelease", null);
21+
"prerelease", "rc.0");
2222
}

Diff for: 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 = 67;
2020
int32_t Patch = 0;
21-
std::string_view Prerelease = "";
21+
std::string_view Prerelease = "rc.0";
2222
} ReactNativeVersion;
2323

2424
} // namespace facebook::react

Diff for: package.json

+45-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.67.0-rc.0",
54
"bin": "./cli.js",
65
"description": "A framework for building native apps using React",
76
"license": "MIT",
@@ -80,10 +79,6 @@
8079
"test-ios-e2e": "detox test -c ios.sim.release packages/rn-tester/e2e",
8180
"test-ios": "./scripts/objc-test.sh test"
8281
},
83-
"workspaces": [
84-
"packages/!(eslint-config-react-native-community)",
85-
"repo-config"
86-
],
8782
"peerDependencies": {
8883
"react": "17.0.2"
8984
},
@@ -116,11 +111,52 @@
116111
"stacktrace-parser": "^0.1.3",
117112
"use-subscription": "^1.0.0",
118113
"whatwg-fetch": "^3.0.0",
119-
"ws": "^6.1.4"
114+
"ws": "^6.1.4",
115+
"react-native-codegen": "^0.0.8"
120116
},
121117
"devDependencies": {
122118
"flow-bin": "^0.162.0",
123-
"react": "17.0.2"
119+
"react": "17.0.2",
120+
"@babel/core": "^7.14.0",
121+
"@babel/generator": "^7.14.0",
122+
"@babel/template": "^7.0.0",
123+
"@babel/types": "^7.0.0",
124+
"@react-native-community/eslint-plugin": "*",
125+
"@reactions/component": "^2.0.2",
126+
"async": "^2.4.0",
127+
"babel-eslint": "^10.1.0",
128+
"babel-preset-fbjs": "^3.4.0",
129+
"clang-format": "^1.2.4",
130+
"connect": "^3.6.5",
131+
"coveralls": "^3.0.2",
132+
"detox": "16.7.2",
133+
"eslint": "7.12.0",
134+
"eslint-config-fb-strict": "^24.9.0",
135+
"eslint-config-fbjs": "2.1.0",
136+
"eslint-config-prettier": "^6.0.0",
137+
"eslint-plugin-babel": "^5.3.0",
138+
"eslint-plugin-eslint-comments": "^3.1.1",
139+
"eslint-plugin-flowtype": "2.50.3",
140+
"eslint-plugin-jest": "22.4.1",
141+
"eslint-plugin-jsx-a11y": "6.2.1",
142+
"eslint-plugin-prettier": "2.6.2",
143+
"eslint-plugin-react": "7.21.5",
144+
"eslint-plugin-react-hooks": "^4.2.0",
145+
"eslint-plugin-react-native": "3.10.0",
146+
"eslint-plugin-relay": "1.8.1",
147+
"jest": "^26.6.3",
148+
"jest-junit": "^10.0.0",
149+
"jscodeshift": "^0.11.0",
150+
"metro-babel-register": "0.66.2",
151+
"metro-transform-plugins": "^0.66.2",
152+
"mkdirp": "^0.5.1",
153+
"prettier": "1.19.1",
154+
"react-shallow-renderer": "16.14.1",
155+
"react-test-renderer": "17.0.2",
156+
"shelljs": "^0.7.8",
157+
"signedsource": "^1.0.0",
158+
"ws": "^6.1.4",
159+
"yargs": "^15.3.1"
124160
},
125161
"detox": {
126162
"test-runner": "jest",
@@ -159,4 +195,4 @@
159195
}
160196
}
161197
}
162-
}
198+
}

0 commit comments

Comments
 (0)