Skip to content

Commit 1aa7ce3

Browse files
authored
Merge pull request #6370 from bithyve/dev
Release 2.2.1
2 parents 62906a4 + 36ec91d commit 1aa7ce3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+624
-191
lines changed

android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,8 @@ android {
8686
applicationId "io.hexawallet.keeper"
8787
minSdkVersion rootProject.ext.minSdkVersion
8888
targetSdkVersion rootProject.ext.targetSdkVersion
89-
versionCode 498
90-
versionName "2.2.0"
89+
versionCode 500
90+
versionName "2.2.1"
9191
missingDimensionStrategy 'react-native-camera', 'general'
9292
missingDimensionStrategy 'store', 'play'
9393
multiDexEnabled true

ios/hexa_keeper.xcodeproj/project.pbxproj

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -758,7 +758,7 @@
758758
CODE_SIGN_ENTITLEMENTS = hexa_keeper/hexa_keeper.entitlements;
759759
CODE_SIGN_IDENTITY = "Apple Development";
760760
CODE_SIGN_STYLE = Automatic;
761-
CURRENT_PROJECT_VERSION = 498;
761+
CURRENT_PROJECT_VERSION = 500;
762762
DEVELOPMENT_TEAM = Y5TCB759QL;
763763
ENABLE_BITCODE = NO;
764764
HEADER_SEARCH_PATHS = (
@@ -859,7 +859,7 @@
859859
"$(inherited)",
860860
"\"$(SRCROOT)\"",
861861
);
862-
MARKETING_VERSION = 2.2.0;
862+
MARKETING_VERSION = 2.2.1;
863863
OTHER_LDFLAGS = (
864864
"$(inherited)",
865865
"-ObjC",
@@ -884,7 +884,7 @@
884884
CLANG_ENABLE_MODULES = YES;
885885
CODE_SIGN_ENTITLEMENTS = hexa_keeper/hexa_keeper.entitlements;
886886
CODE_SIGN_IDENTITY = "Apple Distribution: Bithyve UK Ltd (Y5TCB759QL)";
887-
CURRENT_PROJECT_VERSION = 498;
887+
CURRENT_PROJECT_VERSION = 500;
888888
DEVELOPMENT_TEAM = Y5TCB759QL;
889889
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = Y5TCB759QL;
890890
HEADER_SEARCH_PATHS = (
@@ -985,7 +985,7 @@
985985
"$(inherited)",
986986
"\"$(SRCROOT)\"",
987987
);
988-
MARKETING_VERSION = 2.2.0;
988+
MARKETING_VERSION = 2.2.1;
989989
OTHER_LDFLAGS = (
990990
"$(inherited)",
991991
"-ObjC",
@@ -1142,7 +1142,7 @@
11421142
CODE_SIGN_IDENTITY = "Apple Development";
11431143
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution";
11441144
CODE_SIGN_STYLE = Manual;
1145-
CURRENT_PROJECT_VERSION = 498;
1145+
CURRENT_PROJECT_VERSION = 500;
11461146
DEVELOPMENT_TEAM = Y5TCB759QL;
11471147
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = Y5TCB759QL;
11481148
ENABLE_BITCODE = NO;
@@ -1245,7 +1245,7 @@
12451245
"$(PROJECT_DIR)",
12461246
"\"$(SRCROOT)\"",
12471247
);
1248-
MARKETING_VERSION = 2.2.0;
1248+
MARKETING_VERSION = 2.2.1;
12491249
OTHER_LDFLAGS = (
12501250
"$(inherited)",
12511251
"-ObjC",
@@ -1273,7 +1273,7 @@
12731273
CODE_SIGN_ENTITLEMENTS = hexa_keeper_dev.entitlements;
12741274
CODE_SIGN_IDENTITY = "Apple Distribution";
12751275
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution";
1276-
CURRENT_PROJECT_VERSION = 498;
1276+
CURRENT_PROJECT_VERSION = 500;
12771277
DEVELOPMENT_TEAM = Y5TCB759QL;
12781278
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = Y5TCB759QL;
12791279
HEADER_SEARCH_PATHS = (
@@ -1375,7 +1375,7 @@
13751375
"$(PROJECT_DIR)",
13761376
"\"$(SRCROOT)\"",
13771377
);
1378-
MARKETING_VERSION = 2.2.0;
1378+
MARKETING_VERSION = 2.2.1;
13791379
OTHER_LDFLAGS = (
13801380
"$(inherited)",
13811381
"-ObjC",

ios/hexa_keeper/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
</dict>
3737
</array>
3838
<key>CFBundleVersion</key>
39-
<string>498</string>
39+
<string>500</string>
4040
<key>LSRequiresIPhoneOS</key>
4141
<true/>
4242
<key>NFCReaderUsageDescription</key>

ios/hexa_keeperTests/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>498</string>
22+
<string>500</string>
2323
</dict>
2424
</plist>

ios/hexa_keeper_dev-Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
</dict>
3737
</array>
3838
<key>CFBundleVersion</key>
39-
<string>498</string>
39+
<string>500</string>
4040
<key>LSApplicationQueriesSchemes</key>
4141
<array>
4242
<string>itms-apps</string>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hexa_keeper",
3-
"version": "2.2.0",
3+
"version": "2.2.1",
44
"private": true,
55
"scripts": {
66
"ios": "react-native run-ios",
Lines changed: 9 additions & 0 deletions
Loading
Lines changed: 74 additions & 0 deletions
Loading
Lines changed: 15 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)