Skip to content

Commit 0e06185

Browse files
author
Distiller
committed
[0.67.4] Bump version numbers
1 parent abaf4d4 commit 0e06185

File tree

10 files changed

+584
-584
lines changed

10 files changed

+584
-584
lines changed

Gemfile.lock

+4-4
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.4.6)
6+
activesupport (6.1.5)
77
concurrent-ruby (~> 1.0, >= 1.0.2)
88
i18n (>= 1.6, < 2)
99
minitest (>= 5.1)
@@ -16,10 +16,10 @@ GEM
1616
json (>= 1.5.1)
1717
atomos (0.1.3)
1818
claide (1.1.0)
19-
cocoapods (1.11.2)
19+
cocoapods (1.11.3)
2020
addressable (~> 2.8)
2121
claide (>= 1.0.2, < 2.0)
22-
cocoapods-core (= 1.11.2)
22+
cocoapods-core (= 1.11.3)
2323
cocoapods-deintegrate (>= 1.0.3, < 2.0)
2424
cocoapods-downloader (>= 1.4.0, < 2.0)
2525
cocoapods-plugins (>= 1.0.0, < 2.0)
@@ -34,7 +34,7 @@ GEM
3434
nap (~> 1.0)
3535
ruby-macho (>= 1.0, < 3.0)
3636
xcodeproj (>= 1.21.0, < 2.0)
37-
cocoapods-core (1.11.2)
37+
cocoapods-core (1.11.3)
3838
activesupport (>= 5.0, < 7)
3939
addressable (~> 2.8)
4040
algoliasearch (~> 1.0)

Libraries/Core/ReactNativeVersion.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@
1212
exports.version = {
1313
major: 0,
1414
minor: 67,
15-
patch: 3,
15+
patch: 4,
1616
prerelease: null,
1717
};

React/Base/RCTVersion.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
__rnVersion = @{
2424
RCTVersionMajor: @(0),
2525
RCTVersionMinor: @(67),
26-
RCTVersionPatch: @(3),
26+
RCTVersionPatch: @(4),
2727
RCTVersionPrerelease: [NSNull null],
2828
};
2929
});

ReactAndroid/gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION_NAME=0.67.3
1+
VERSION_NAME=0.67.4
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
@@ -17,6 +17,6 @@ public class ReactNativeVersion {
1717
public static final Map<String, Object> VERSION = MapBuilder.<String, Object>of(
1818
"major", 0,
1919
"minor", 67,
20-
"patch", 3,
20+
"patch", 4,
2121
"prerelease", null);
2222
}

ReactCommon/cxxreact/ReactNativeVersion.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ namespace facebook::react {
1717
constexpr struct {
1818
int32_t Major = 0;
1919
int32_t Minor = 67;
20-
int32_t Patch = 3;
20+
int32_t Patch = 4;
2121
std::string_view Prerelease = "";
2222
} ReactNativeVersion;
2323

package.json

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

0 commit comments

Comments
 (0)