Skip to content

Commit

Permalink
[0.71.14] Bump version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
Distiller committed Oct 12, 2023
1 parent 4b386c9 commit b0a27d2
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions Gemfile.lock
Expand Up @@ -93,7 +93,7 @@ DEPENDENCIES
cocoapods (>= 1.11.3)

RUBY VERSION
ruby 3.2.0p0
ruby 2.7.6p219

BUNDLED WITH
2.4.12
2.3.22
2 changes: 1 addition & 1 deletion Libraries/Core/ReactNativeVersion.js
Expand Up @@ -12,6 +12,6 @@
exports.version = {
major: 0,
minor: 71,
patch: 13,
patch: 14,
prerelease: null,
};
2 changes: 1 addition & 1 deletion React/Base/RCTVersion.m
Expand Up @@ -23,7 +23,7 @@
__rnVersion = @{
RCTVersionMajor: @(0),
RCTVersionMinor: @(71),
RCTVersionPatch: @(13),
RCTVersionPatch: @(14),
RCTVersionPrerelease: [NSNull null],
};
});
Expand Down
2 changes: 1 addition & 1 deletion ReactAndroid/gradle.properties
@@ -1,4 +1,4 @@
VERSION_NAME=0.71.13
VERSION_NAME=0.71.14
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", 13,
"patch", 14,
"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 = 13;
int32_t Patch = 14;
std::string_view Prerelease = "";
} ReactNativeVersion;

Expand Down
6 changes: 3 additions & 3 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "react-native",
"version": "0.71.13",
"version": "0.71.14",
"bin": "./cli.js",
"description": "A framework for building native apps using React",
"license": "MIT",
Expand Down Expand Up @@ -183,7 +183,7 @@
"inquirer": "^7.1.0",
"jest": "^29.2.1",
"jest-junit": "^10.0.0",
"jscodeshift": "^0.13.1",
"jscodeshift": "^0.14.0",
"metro-babel-register": "0.73.10",
"metro-memory-fs": "0.73.10",
"mkdirp": "^0.5.1",
Expand Down Expand Up @@ -213,4 +213,4 @@
}
]
}
}
}
2 changes: 1 addition & 1 deletion template/package.json
Expand Up @@ -11,7 +11,7 @@
},
"dependencies": {
"react": "18.2.0",
"react-native": "0.71.13"
"react-native": "0.71.14"
},
"devDependencies": {
"@babel/core": "^7.20.0",
Expand Down

0 comments on commit b0a27d2

Please sign in to comment.