2018-03-02 21:59:33 +00:00
|
|
|
/**
|
|
|
|
* @generated by scripts/bump-oss-version.js
|
|
|
|
*
|
2018-09-11 22:27:47 +00:00
|
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
2018-03-02 21:59:33 +00:00
|
|
|
*
|
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#import "RCTVersion.h"
|
|
|
|
|
|
|
|
NSString* const RCTVersionMajor = @"major";
|
|
|
|
NSString* const RCTVersionMinor = @"minor";
|
|
|
|
NSString* const RCTVersionPatch = @"patch";
|
|
|
|
NSString* const RCTVersionPrerelease = @"prerelease";
|
|
|
|
|
|
|
|
static NSDictionary* __rnVersion;
|
|
|
|
|
|
|
|
__attribute__((constructor))
|
|
|
|
static void __makeVersion()
|
|
|
|
{
|
|
|
|
__rnVersion = @{
|
|
|
|
RCTVersionMajor: @(0),
|
2019-02-13 20:14:47 +00:00
|
|
|
RCTVersionMinor: @(59),
|
2019-03-14 11:12:02 +00:00
|
|
|
RCTVersionPatch: @(1),
|
2019-03-12 12:42:02 +00:00
|
|
|
RCTVersionPrerelease: [NSNull null],
|
2018-03-02 21:59:33 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
NSDictionary* RCTGetReactNativeVersion(void)
|
|
|
|
{
|
|
|
|
return __rnVersion;
|
|
|
|
}
|