Skip to content

Commit 51f5ea1

Browse files
author
Distiller
committedMar 30, 2022
[0.68.0] Bump version numbers
1 parent a4a6e23 commit 51f5ea1

File tree

10 files changed

+583
-583
lines changed

10 files changed

+583
-583
lines changed
 

‎Gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -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.2)
4949
cocoapods-plugins (1.0.0)
5050
nap
5151
cocoapods-search (1.0.1)

‎Libraries/Core/ReactNativeVersion.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ exports.version = {
1313
major: 0,
1414
minor: 68,
1515
patch: 0,
16-
prerelease: 'rc.4',
16+
prerelease: null,
1717
};

‎React/Base/RCTVersion.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
RCTVersionMajor: @(0),
2525
RCTVersionMinor: @(68),
2626
RCTVersionPatch: @(0),
27-
RCTVersionPrerelease: @"rc.4",
27+
RCTVersionPrerelease: [NSNull null],
2828
};
2929
});
3030
return __rnVersion;

‎ReactAndroid/gradle.properties

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

44
POM_NAME=ReactNative

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ public class ReactNativeVersion {
1818
"major", 0,
1919
"minor", 68,
2020
"patch", 0,
21-
"prerelease", "rc.4");
21+
"prerelease", null);
2222
}

‎ReactCommon/cxxreact/ReactNativeVersion.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ constexpr struct {
1818
int32_t Major = 0;
1919
int32_t Minor = 68;
2020
int32_t Patch = 0;
21-
std::string_view Prerelease = "rc.4";
21+
std::string_view Prerelease = "";
2222
} ReactNativeVersion;
2323

2424
} // namespace facebook::react

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native",
3-
"version": "0.68.0-rc.4",
3+
"version": "0.68.0",
44
"bin": "./cli.js",
55
"description": "A framework for building native apps using React",
66
"license": "MIT",

‎packages/rn-tester/Podfile.lock

+574-574
Large diffs are not rendered by default.

‎template/Gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -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.2)
4949
cocoapods-plugins (1.0.0)
5050
nap
5151
cocoapods-search (1.0.1)

‎template/package.json

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

0 commit comments

Comments
 (0)
Please sign in to comment.