Skip to content

Commit 6efb517

Browse files
author
Distiller
committed
[0.69.0-rc.0] Bump version numbers
1 parent f3a4484 commit 6efb517

10 files changed

Lines changed: 642 additions & 608 deletions

File tree

Gemfile.lock

Lines changed: 4 additions & 4 deletions
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.5.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)
@@ -71,7 +71,7 @@ GEM
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)
@@ -97,4 +97,4 @@ RUBY VERSION
9797
ruby 2.7.5p203
9898

9999
BUNDLED WITH
100-
2.3.10
100+
2.3.11
Lines changed: 4 additions & 4 deletions
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: 69,
1515
patch: 0,
16-
prerelease: null,
16+
prerelease: 'rc.0',
1717
};

React/Base/RCTVersion.m

Lines changed: 5 additions & 5 deletions
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: @(69),
26+
RCTVersionPatch: @(0),
27+
RCTVersionPrerelease: @"rc.0",
28+
};
2929
});
3030
return __rnVersion;
3131
}

ReactAndroid/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION_NAME=1000.0.0-main
1+
VERSION_NAME=0.69.0-rc.0
22
GROUP=com.facebook.react
33

44
POM_NAME=ReactNative

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

Lines changed: 2 additions & 2 deletions
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", 69,
2020
"patch", 0,
21-
"prerelease", null);
21+
"prerelease", "rc.0");
2222
}

ReactCommon/cxxreact/ReactNativeVersion.h

Lines changed: 2 additions & 2 deletions
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 = 69;
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

Lines changed: 42 additions & 10 deletions
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.69.0-rc.0",
54
"bin": "./cli.js",
65
"description": "A framework for building native apps using React",
76
"license": "MIT",
@@ -85,10 +84,6 @@
8584
"test-android-e2e": "yarn run docker-build-android && yarn run test-android-run-e2e",
8685
"test-ios": "./scripts/objc-test.sh test"
8786
},
88-
"workspaces": [
89-
"packages/!(eslint-config-react-native-community)",
90-
"repo-config"
91-
],
9287
"peerDependencies": {
9388
"react": "18.0.0"
9489
},
@@ -123,12 +118,49 @@
123118
"stacktrace-parser": "^0.1.3",
124119
"use-subscription": ">=1.0.0 <1.6.0",
125120
"whatwg-fetch": "^3.0.0",
126-
"ws": "^6.1.4"
121+
"ws": "^6.1.4",
122+
"react-native-codegen": "^0.0.15"
127123
},
128124
"devDependencies": {
129125
"flow-bin": "^0.176.3",
130-
"react": "18.0.0",
131-
"react-test-renderer": "^18.0.0"
126+
"react": "17.0.2",
127+
"react-test-renderer": "17.0.2",
128+
"@babel/core": "^7.14.0",
129+
"@babel/generator": "^7.14.0",
130+
"@babel/plugin-transform-regenerator": "^7.0.0",
131+
"@react-native-community/eslint-plugin": "*",
132+
"@react-native/eslint-plugin-specs": ">0.0.2",
133+
"@reactions/component": "^2.0.2",
134+
"async": "^3.2.2",
135+
"babel-eslint": "^10.1.0",
136+
"clang-format": "^1.2.4",
137+
"connect": "^3.6.5",
138+
"coveralls": "^3.1.1",
139+
"eslint": "^7.32.0",
140+
"eslint-config-fb-strict": "^26.0.0",
141+
"eslint-config-fbjs": "^3.1.1",
142+
"eslint-config-prettier": "^8.3.0",
143+
"eslint-plugin-babel": "^5.3.1",
144+
"eslint-plugin-eslint-comments": "^3.2.0",
145+
"eslint-plugin-flowtype": "^7.0.0",
146+
"eslint-plugin-jest": "^25.2.4",
147+
"eslint-plugin-jsx-a11y": "^6.4.1",
148+
"eslint-plugin-prettier": "^4.0.0",
149+
"eslint-plugin-react": "^7.26.1",
150+
"eslint-plugin-react-hooks": "^4.2.0",
151+
"eslint-plugin-react-native": "^3.11.0",
152+
"eslint-plugin-relay": "^1.8.2",
153+
"inquirer": "^7.1.0",
154+
"jest": "^26.6.3",
155+
"jest-junit": "^10.0.0",
156+
"jscodeshift": "^0.13.1",
157+
"metro-babel-register": "0.70.1",
158+
"mkdirp": "^0.5.1",
159+
"prettier": "^2.4.1",
160+
"shelljs": "^0.8.5",
161+
"signedsource": "^1.0.0",
162+
"ws": "^6.1.4",
163+
"yargs": "^15.3.1"
132164
},
133165
"codegenConfig": {
134166
"libraries": [
@@ -148,4 +180,4 @@
148180
}
149181
]
150182
}
151-
}
183+
}

0 commit comments

Comments
 (0)