Skip to content

Commit

Permalink
[0.67.0] Bump version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
Distiller committed Jan 18, 2022
1 parent 900af2b commit 857dbd9
Show file tree
Hide file tree
Showing 10 changed files with 588 additions and 587 deletions.
10 changes: 5 additions & 5 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ GEM
specs:
CFPropertyList (3.0.5)
rexml
activesupport (6.1.4.1)
activesupport (6.1.4.4)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 1.6, < 2)
minitest (>= 5.1)
Expand All @@ -15,7 +15,7 @@ GEM
httpclient (~> 2.8, >= 2.8.3)
json (>= 1.5.1)
atomos (0.1.3)
claide (1.0.3)
claide (1.1.0)
cocoapods (1.11.2)
addressable (~> 2.8)
claide (>= 1.0.2, < 2.0)
Expand Down Expand Up @@ -58,15 +58,15 @@ GEM
escape (0.0.4)
ethon (0.15.0)
ffi (>= 1.15.0)
ffi (1.15.4)
ffi (1.15.5)
fourflusher (2.3.1)
fuzzy_match (2.0.4)
gh_inspector (1.1.3)
httpclient (2.8.3)
i18n (1.8.11)
concurrent-ruby (~> 1.0)
json (2.6.1)
minitest (5.14.4)
minitest (5.15.0)
molinillo (0.8.0)
nanaimo (0.3.0)
nap (1.1.0)
Expand All @@ -85,7 +85,7 @@ GEM
colored2 (~> 3.1)
nanaimo (~> 0.3.0)
rexml (~> 3.2.4)
zeitwerk (2.5.1)
zeitwerk (2.5.3)

PLATFORMS
ruby
Expand Down
2 changes: 1 addition & 1 deletion Libraries/Core/ReactNativeVersion.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ exports.version = {
major: 0,
minor: 67,
patch: 0,
prerelease: 'rc.6',
prerelease: null,
};
2 changes: 1 addition & 1 deletion React/Base/RCTVersion.m
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
RCTVersionMajor: @(0),
RCTVersionMinor: @(67),
RCTVersionPatch: @(0),
RCTVersionPrerelease: @"rc.6",
RCTVersionPrerelease: [NSNull null],
};
});
return __rnVersion;
Expand Down
2 changes: 1 addition & 1 deletion ReactAndroid/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION_NAME=0.67.0-rc.6
VERSION_NAME=0.67.0
GROUP=com.facebook.react

POM_NAME=ReactNative
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ public class ReactNativeVersion {
"major", 0,
"minor", 67,
"patch", 0,
"prerelease", "rc.6");
"prerelease", null);
}
2 changes: 1 addition & 1 deletion ReactCommon/cxxreact/ReactNativeVersion.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ constexpr struct {
int32_t Major = 0;
int32_t Minor = 67;
int32_t Patch = 0;
std::string_view Prerelease = "rc.6";
std::string_view Prerelease = "";
} ReactNativeVersion;

} // namespace facebook::react
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-native",
"version": "0.67.0-rc.6",
"version": "0.67.0",
"bin": "./cli.js",
"description": "A framework for building native apps using React",
"license": "MIT",
Expand Down Expand Up @@ -156,7 +156,8 @@
"shelljs": "^0.7.8",
"signedsource": "^1.0.0",
"ws": "^6.1.4",
"yargs": "^15.3.1"
"yargs": "^15.3.1",
"inquirer": "^7.1.0"
},
"detox": {
"test-runner": "jest",
Expand Down
Loading

0 comments on commit 857dbd9

Please sign in to comment.