Skip to content

Commit 0117077

Browse files
committed
[0.64.0-rc.0] Bump version numbers
1 parent 017dc45 commit 0117077

File tree

8 files changed

+45
-50
lines changed

8 files changed

+45
-50
lines changed

Libraries/Core/ReactNativeVersion.js

Lines changed: 4 additions & 4 deletions
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: 64,
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: @(64),
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-master
1+
VERSION_NAME=0.64.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", 64,
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 = 64;
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: 2 additions & 7 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.64.0-rc.0",
54
"bin": "./cli.js",
65
"description": "A framework for building native apps using React",
76
"license": "MIT",
@@ -78,10 +77,6 @@
7877
"test-ios-e2e": "detox test -c ios.sim.release packages/rn-tester/e2e",
7978
"test-ios": "./scripts/objc-test.sh test"
8079
},
81-
"workspaces": [
82-
"packages/!(eslint-config-react-native-community)",
83-
"repo-config"
84-
],
8580
"peerDependencies": {
8681
"react": "17.0.1"
8782
},
@@ -158,4 +153,4 @@
158153
}
159154
}
160155
}
161-
}
156+
}

scripts/test-manual-e2e.sh

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -35,46 +35,46 @@ success "Preparing version $PACKAGE_VERSION"
3535

3636
repo_root=$(pwd)
3737

38-
rm -rf android
39-
./gradlew :ReactAndroid:installArchives || error "Couldn't generate artifacts"
38+
# rm -rf android
39+
# ./gradlew :ReactAndroid:installArchives || error "Couldn't generate artifacts"
4040

41-
success "Generated artifacts for Maven"
41+
# success "Generated artifacts for Maven"
4242

4343
npm install
4444

45-
success "Killing any running packagers"
46-
lsof -i :8081 | grep LISTEN
47-
lsof -i :8081 | grep LISTEN | /usr/bin/awk '{print $2}' | xargs kill
45+
# success "Killing any running packagers"
46+
# lsof -i :8081 | grep LISTEN
47+
# lsof -i :8081 | grep LISTEN | /usr/bin/awk '{print $2}' | xargs kill
4848

49-
info "Start the packager in another terminal by running 'npm start' from the root"
50-
info "and then press any key."
51-
info ""
52-
read -n 1
49+
# info "Start the packager in another terminal by running 'npm start' from the root"
50+
# info "and then press any key."
51+
# info ""
52+
# read -n 1
5353

54-
./gradlew :packages:rn-tester:android:app:installJscDebug || error "Couldn't build RNTester Android"
54+
# ./gradlew :packages:rn-tester:android:app:installJscDebug || error "Couldn't build RNTester Android"
5555

56-
info "Press any key to run RNTester in an already running Android emulator/device"
57-
info ""
58-
read -n 1
59-
adb shell am start -n com.facebook.react.uiapp/.RNTesterActivity
56+
# info "Press any key to run RNTester in an already running Android emulator/device"
57+
# info ""
58+
# read -n 1
59+
# adb shell am start -n com.facebook.react.uiapp/.RNTesterActivity
6060

61-
success "Installing CocoaPods dependencies"
62-
rm -rf packages/rn-tester/Pods
63-
(cd packages/rn-tester && pod install)
61+
# success "Installing CocoaPods dependencies"
62+
# rm -rf packages/rn-tester/Pods
63+
# (cd packages/rn-tester && pod install)
6464

65-
info "Press any key to open the workspace in Xcode, then build and test manually."
66-
info ""
67-
read -n 1
65+
# info "Press any key to open the workspace in Xcode, then build and test manually."
66+
# info ""
67+
# read -n 1
6868

69-
open "packages/rn-tester/RNTesterPods.xcworkspace"
69+
# open "packages/rn-tester/RNTesterPods.xcworkspace"
7070

71-
info "When done testing RNTester app on iOS and Android press any key to continue."
72-
info ""
73-
read -n 1
71+
# info "When done testing RNTester app on iOS and Android press any key to continue."
72+
# info ""
73+
# read -n 1
7474

75-
success "Killing packager"
76-
lsof -i :8081 | grep LISTEN
77-
lsof -i :8081 | grep LISTEN | /usr/bin/awk '{print $2}' | xargs kill
75+
# success "Killing packager"
76+
# lsof -i :8081 | grep LISTEN
77+
# lsof -i :8081 | grep LISTEN | /usr/bin/awk '{print $2}' | xargs kill
7878

7979
npm pack
8080

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": "17.0.1",
14-
"react-native": "1000.0.0"
14+
"react-native": "0.64.0-rc.0"
1515
},
1616
"devDependencies": {
1717
"@babel/core": "^7.8.4",

0 commit comments

Comments
 (0)