Skip to content

Commit a0bdde5

Browse files
committed
[native] codeVersion -> 540
1 parent 882df68 commit a0bdde5

8 files changed

Lines changed: 17 additions & 17 deletions

File tree

native/android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -290,8 +290,8 @@ android {
290290
applicationId 'app.comm.android'
291291
minSdkVersion rootProject.ext.minSdkVersion
292292
targetSdkVersion rootProject.ext.targetSdkVersion
293-
versionCode 539
294-
versionName '1.0.539'
293+
versionCode 540
294+
versionName '1.0.540'
295295
multiDexEnabled true
296296
}
297297

native/cpp/CommonCpp/NativeModules/CommCoreModule.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ namespace jsi = facebook::jsi;
3232

3333
class CommCoreModule : public facebook::react::CommCoreModuleSchemaCxxSpecJSI {
3434
// Version defined in native/version.mjs and updated by update-version script
35-
const int codeVersion{539};
35+
const int codeVersion{540};
3636
std::unique_ptr<WorkerThread> cryptoThread;
3737

3838
const std::string secureStoreAccountDataKey = "cryptoAccountDataKey";

native/cpp/CommonCpp/Tools/StaffUtils.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
namespace comm {
44
bool StaffUtils::isStaffRelease() {
5-
return true;
5+
return false;
66
}
77
} // namespace comm

native/ios/Comm.xcodeproj/project.pbxproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1538,7 +1538,7 @@
15381538
CODE_SIGN_IDENTITY = "Apple Development";
15391539
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
15401540
CODE_SIGN_STYLE = Automatic;
1541-
CURRENT_PROJECT_VERSION = 539;
1541+
CURRENT_PROJECT_VERSION = 540;
15421542
DEAD_CODE_STRIPPING = YES;
15431543
DEVELOPMENT_TEAM = H98Y8MH53M;
15441544
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64;
@@ -1686,7 +1686,7 @@
16861686
CODE_SIGN_IDENTITY = "Apple Development";
16871687
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
16881688
CODE_SIGN_STYLE = Automatic;
1689-
CURRENT_PROJECT_VERSION = 539;
1689+
CURRENT_PROJECT_VERSION = 540;
16901690
DEVELOPMENT_TEAM = H98Y8MH53M;
16911691
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64;
16921692
HEADER_SEARCH_PATHS = (
@@ -1913,7 +1913,7 @@
19131913
CODE_SIGN_IDENTITY = "Apple Development";
19141914
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
19151915
CODE_SIGN_STYLE = Automatic;
1916-
CURRENT_PROJECT_VERSION = 539;
1916+
CURRENT_PROJECT_VERSION = 540;
19171917
DEBUG_INFORMATION_FORMAT = dwarf;
19181918
DEVELOPMENT_TEAM = H98Y8MH53M;
19191919
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64;
@@ -1932,7 +1932,7 @@
19321932
"@executable_path/Frameworks",
19331933
"@executable_path/../../Frameworks",
19341934
);
1935-
MARKETING_VERSION = 1.0.539;
1935+
MARKETING_VERSION = 1.0.540;
19361936
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
19371937
MTL_FAST_MATH = YES;
19381938
OTHER_CFLAGS = (
@@ -1974,7 +1974,7 @@
19741974
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
19751975
CODE_SIGN_STYLE = Automatic;
19761976
COPY_PHASE_STRIP = NO;
1977-
CURRENT_PROJECT_VERSION = 539;
1977+
CURRENT_PROJECT_VERSION = 540;
19781978
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
19791979
DEVELOPMENT_TEAM = H98Y8MH53M;
19801980
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64;
@@ -1989,7 +1989,7 @@
19891989
"@executable_path/Frameworks",
19901990
"@executable_path/../../Frameworks",
19911991
);
1992-
MARKETING_VERSION = 1.0.539;
1992+
MARKETING_VERSION = 1.0.540;
19931993
MTL_FAST_MATH = YES;
19941994
ONLY_ACTIVE_ARCH = YES;
19951995
OTHER_CFLAGS = (

native/ios/Comm/Info.debug.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@
2323
<key>CFBundlePackageType</key>
2424
<string>APPL</string>
2525
<key>CFBundleShortVersionString</key>
26-
<string>1.0.539</string>
26+
<string>1.0.540</string>
2727
<key>CFBundleSignature</key>
2828
<string>????</string>
2929
<key>CFBundleVersion</key>
30-
<string>539</string>
30+
<string>540</string>
3131
<key>CFBundleURLTypes</key>
3232
<array>
3333
<dict>

native/ios/Comm/Info.release.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@
2323
<key>CFBundlePackageType</key>
2424
<string>APPL</string>
2525
<key>CFBundleShortVersionString</key>
26-
<string>1.0.539</string>
26+
<string>1.0.540</string>
2727
<key>CFBundleSignature</key>
2828
<string>????</string>
2929
<key>CFBundleVersion</key>
30-
<string>539</string>
30+
<string>540</string>
3131
<key>CFBundleURLTypes</key>
3232
<array>
3333
<dict>

native/utils/staff-utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import { useIsCurrentUserStaff } from 'lib/shared/staff-utils.js';
44

5-
const isStaffRelease = true;
5+
const isStaffRelease = false;
66

77
function useStaffCanSee(): boolean {
88
const isCurrentUserStaff = useIsCurrentUserStaff();

native/version.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
// @flow
22

3-
export const codeVersion = 539;
4-
export const codeVersionName = '1.0.539';
3+
export const codeVersion = 540;
4+
export const codeVersionName = '1.0.540';

0 commit comments

Comments
 (0)