Skip to content

Commit ede87f8

Browse files
author
Distiller
committed
[0.71.17] Bump version numbers
1 parent b4d8ae5 commit ede87f8

File tree

8 files changed

+17
-13
lines changed

8 files changed

+17
-13
lines changed

Gemfile.lock

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
GEM
22
remote: https://rubygems.org/
33
specs:
4-
CFPropertyList (3.0.6)
4+
CFPropertyList (3.0.7)
5+
base64
6+
nkf
57
rexml
6-
activesupport (7.0.8)
8+
activesupport (7.0.8.1)
79
concurrent-ruby (~> 1.0, >= 1.0.2)
810
i18n (>= 1.6, < 2)
911
minitest (>= 5.1)
@@ -14,11 +16,12 @@ GEM
1416
httpclient (~> 2.8, >= 2.8.3)
1517
json (>= 1.5.1)
1618
atomos (0.1.3)
19+
base64 (0.2.0)
1720
claide (1.1.0)
18-
cocoapods (1.15.0)
21+
cocoapods (1.15.2)
1922
addressable (~> 2.8)
2023
claide (>= 1.0.2, < 2.0)
21-
cocoapods-core (= 1.15.0)
24+
cocoapods-core (= 1.15.2)
2225
cocoapods-deintegrate (>= 1.0.3, < 2.0)
2326
cocoapods-downloader (>= 2.1, < 3.0)
2427
cocoapods-plugins (>= 1.0.0, < 2.0)
@@ -33,7 +36,7 @@ GEM
3336
nap (~> 1.0)
3437
ruby-macho (>= 2.3.0, < 3.0)
3538
xcodeproj (>= 1.23.0, < 2.0)
36-
cocoapods-core (1.15.0)
39+
cocoapods-core (1.15.2)
3740
activesupport (>= 5.0, < 8)
3841
addressable (~> 2.8)
3942
algoliasearch (~> 1.0)
@@ -65,11 +68,12 @@ GEM
6568
i18n (1.14.1)
6669
concurrent-ruby (~> 1.0)
6770
json (2.7.1)
68-
minitest (5.21.2)
71+
minitest (5.22.2)
6972
molinillo (0.8.0)
7073
nanaimo (0.3.0)
7174
nap (1.1.0)
7275
netrc (0.11.0)
76+
nkf (0.2.0)
7377
public_suffix (4.0.7)
7478
rexml (3.2.6)
7579
ruby-macho (2.5.1)

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: 71,
15-
patch: 16,
15+
patch: 17,
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: @(71),
26-
RCTVersionPatch: @(16),
26+
RCTVersionPatch: @(17),
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.71.16
1+
VERSION_NAME=0.71.17
22
GROUP=com.facebook.react
33

44
# JVM Versions

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", 71,
20-
"patch", 16,
20+
"patch", 17,
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 = 71;
20-
int32_t Patch = 16;
20+
int32_t Patch = 17;
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.71.16",
3+
"version": "0.71.17",
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.2.0",
14-
"react-native": "0.71.16"
14+
"react-native": "0.71.17"
1515
},
1616
"devDependencies": {
1717
"@babel/core": "^7.20.0",

0 commit comments

Comments
 (0)