Skip to content

Commit

Permalink
[0.71.17] Bump version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
Distiller committed Feb 27, 2024
1 parent b4d8ae5 commit ede87f8
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 13 deletions.
16 changes: 10 additions & 6 deletions Gemfile.lock
@@ -1,9 +1,11 @@
GEM
remote: https://rubygems.org/
specs:
CFPropertyList (3.0.6)
CFPropertyList (3.0.7)
base64
nkf
rexml
activesupport (7.0.8)
activesupport (7.0.8.1)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 1.6, < 2)
minitest (>= 5.1)
Expand All @@ -14,11 +16,12 @@ GEM
httpclient (~> 2.8, >= 2.8.3)
json (>= 1.5.1)
atomos (0.1.3)
base64 (0.2.0)
claide (1.1.0)
cocoapods (1.15.0)
cocoapods (1.15.2)
addressable (~> 2.8)
claide (>= 1.0.2, < 2.0)
cocoapods-core (= 1.15.0)
cocoapods-core (= 1.15.2)
cocoapods-deintegrate (>= 1.0.3, < 2.0)
cocoapods-downloader (>= 2.1, < 3.0)
cocoapods-plugins (>= 1.0.0, < 2.0)
Expand All @@ -33,7 +36,7 @@ GEM
nap (~> 1.0)
ruby-macho (>= 2.3.0, < 3.0)
xcodeproj (>= 1.23.0, < 2.0)
cocoapods-core (1.15.0)
cocoapods-core (1.15.2)
activesupport (>= 5.0, < 8)
addressable (~> 2.8)
algoliasearch (~> 1.0)
Expand Down Expand Up @@ -65,11 +68,12 @@ GEM
i18n (1.14.1)
concurrent-ruby (~> 1.0)
json (2.7.1)
minitest (5.21.2)
minitest (5.22.2)
molinillo (0.8.0)
nanaimo (0.3.0)
nap (1.1.0)
netrc (0.11.0)
nkf (0.2.0)
public_suffix (4.0.7)
rexml (3.2.6)
ruby-macho (2.5.1)
Expand Down
2 changes: 1 addition & 1 deletion Libraries/Core/ReactNativeVersion.js
Expand Up @@ -12,6 +12,6 @@
exports.version = {
major: 0,
minor: 71,
patch: 16,
patch: 17,
prerelease: null,
};
2 changes: 1 addition & 1 deletion React/Base/RCTVersion.m
Expand Up @@ -23,7 +23,7 @@
__rnVersion = @{
RCTVersionMajor: @(0),
RCTVersionMinor: @(71),
RCTVersionPatch: @(16),
RCTVersionPatch: @(17),
RCTVersionPrerelease: [NSNull null],
};
});
Expand Down
2 changes: 1 addition & 1 deletion ReactAndroid/gradle.properties
@@ -1,4 +1,4 @@
VERSION_NAME=0.71.16
VERSION_NAME=0.71.17
GROUP=com.facebook.react

# JVM Versions
Expand Down
Expand Up @@ -17,6 +17,6 @@ public class ReactNativeVersion {
public static final Map<String, Object> VERSION = MapBuilder.<String, Object>of(
"major", 0,
"minor", 71,
"patch", 16,
"patch", 17,
"prerelease", null);
}
2 changes: 1 addition & 1 deletion ReactCommon/cxxreact/ReactNativeVersion.h
Expand Up @@ -17,7 +17,7 @@ namespace facebook::react {
constexpr struct {
int32_t Major = 0;
int32_t Minor = 71;
int32_t Patch = 16;
int32_t Patch = 17;
std::string_view Prerelease = "";
} ReactNativeVersion;

Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "react-native",
"version": "0.71.16",
"version": "0.71.17",
"bin": "./cli.js",
"description": "A framework for building native apps using React",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion template/package.json
Expand Up @@ -11,7 +11,7 @@
},
"dependencies": {
"react": "18.2.0",
"react-native": "0.71.16"
"react-native": "0.71.17"
},
"devDependencies": {
"@babel/core": "^7.20.0",
Expand Down

0 comments on commit ede87f8

Please sign in to comment.