Skip to content

Commit 35fa47b

Browse files
author
Distiller
committed
[0.70.5] Bump version numbers
1 parent 59407a4 commit 35fa47b

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

Gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ GEM
5656
colored2 (3.1.2)
5757
concurrent-ruby (1.1.10)
5858
escape (0.0.4)
59-
ethon (0.15.0)
59+
ethon (0.16.0)
6060
ffi (>= 1.15.0)
6161
ffi (1.15.5)
6262
fourflusher (2.3.1)
@@ -85,7 +85,7 @@ GEM
8585
colored2 (~> 3.1)
8686
nanaimo (~> 0.3.0)
8787
rexml (~> 3.2.4)
88-
zeitwerk (2.6.1)
88+
zeitwerk (2.6.5)
8989

9090
PLATFORMS
9191
ruby

Libraries/Core/ReactNativeVersion.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@
1212
exports.version = {
1313
major: 0,
1414
minor: 70,
15-
patch: 4,
15+
patch: 5,
1616
prerelease: null,
1717
};

React/Base/RCTVersion.m

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

ReactAndroid/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION_NAME=0.70.4
1+
VERSION_NAME=0.70.5
22
GROUP=com.facebook.react
33

44
POM_NAME=ReactNative

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

Lines changed: 1 addition & 1 deletion
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", 70,
20-
"patch", 4,
20+
"patch", 5,
2121
"prerelease", null);
2222
}

ReactCommon/cxxreact/ReactNativeVersion.h

Lines changed: 1 addition & 1 deletion
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 = 70;
20-
int32_t Patch = 4;
20+
int32_t Patch = 5;
2121
std::string_view Prerelease = "";
2222
} ReactNativeVersion;
2323

package.json

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

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": "18.1.0",
14-
"react-native": "0.70.4"
14+
"react-native": "0.70.5"
1515
},
1616
"devDependencies": {
1717
"@babel/core": "^7.12.9",

0 commit comments

Comments
 (0)