diff --git a/lib/shared/version-utils.js b/lib/shared/version-utils.js --- a/lib/shared/version-utils.js +++ b/lib/shared/version-utils.js @@ -8,6 +8,12 @@ */ const FUTURE_CODE_VERSION = 1000000; +/** + * A code version used for features that are waiting to be included + * in the very next release + */ +const NEW_CODE_VERSION = 1000000; + function hasMinCodeVersion( platformDetails: ?PlatformDetails, minCodeVersion: $Shape<{ +native: number, +web: number }>, @@ -30,4 +36,4 @@ return true; } -export { FUTURE_CODE_VERSION, hasMinCodeVersion }; +export { FUTURE_CODE_VERSION, NEW_CODE_VERSION, hasMinCodeVersion };