Skip to content

Commit b418498

Browse files
author
Distiller
committed
[0.72.12] Bump version numbers
1 parent dd311c9 commit b418498

8 files changed

Lines changed: 8 additions & 8 deletions

File tree

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ GEM
6565
fuzzy_match (2.0.4)
6666
gh_inspector (1.1.3)
6767
httpclient (2.8.3)
68-
i18n (1.14.1)
68+
i18n (1.14.4)
6969
concurrent-ruby (~> 1.0)
7070
json (2.7.1)
7171
minitest (5.22.2)

packages/react-native/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: 72,
15-
patch: 11,
15+
patch: 12,
1616
prerelease: null,
1717
};

packages/react-native/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: @(72),
26-
RCTVersionPatch: @(11),
26+
RCTVersionPatch: @(12),
2727
RCTVersionPrerelease: [NSNull null],
2828
};
2929
});

packages/react-native/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.72.11
1+
VERSION_NAME=0.72.12
22
GROUP=com.facebook.react
33

44
# JVM Versions

packages/react-native/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", 72,
20-
"patch", 11,
20+
"patch", 12,
2121
"prerelease", null);
2222
}

packages/react-native/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 = 72;
20-
int32_t Patch = 11;
20+
int32_t Patch = 12;
2121
std::string_view Prerelease = "";
2222
} ReactNativeVersion;
2323

packages/react-native/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.72.11",
3+
"version": "0.72.12",
44
"bin": "./cli.js",
55
"description": "A framework for building native apps using React",
66
"license": "MIT",

packages/react-native/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.72.11"
14+
"react-native": "0.72.12"
1515
},
1616
"devDependencies": {
1717
"@babel/core": "^7.20.0",

0 commit comments

Comments
 (0)