Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Libraries/Core/ReactNativeVersion.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

exports.version = {
major: 0,
minor: 66,
minor: 0,
Comment thread
Saadnajmi marked this conversation as resolved.
patch: 0,
prerelease: null,
};
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
public class ReactNativeVersion {
public static final Map<String, Object> VERSION = MapBuilder.<String, Object>of(
"major", 0,
"minor", 66,
"minor", 0,
"patch", 0,
"prerelease", null);
}
2 changes: 1 addition & 1 deletion ReactCommon/cxxreact/ReactNativeVersion.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ namespace facebook::react {

constexpr struct {
int32_t Major = 0;
int32_t Minor = 66;
int32_t Minor = 0;
int32_t Patch = 0;
std::string_view Prerelease = "";
} ReactNativeVersion;
Expand Down
3 changes: 2 additions & 1 deletion template/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,14 @@
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"macos": "react-native run-macos",
"start": "react-native start",
"test": "jest",
"lint": "eslint ."
},
"dependencies": {
"react": "17.0.2",
"react-native": "0.66.0"
"react-native-macos": "1000.0.0"
Comment thread
kelset marked this conversation as resolved.
},
"devDependencies": {
"@babel/core": "^7.12.9",
Expand Down