Skip to content

Commit fd4a51a

Browse files
authored
Bump version to v2.1.2 (#2091)
* ⬆️ Bump version * 💅 Lint fixes
1 parent a14cbc6 commit fd4a51a

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,8 +152,8 @@ android {
152152
applicationId "io.lisk.mobile"
153153
minSdkVersion rootProject.ext.minSdkVersion
154154
targetSdkVersion rootProject.ext.targetSdkVersion
155-
versionCode 67
156-
versionName "2.1.0"
155+
versionCode 80
156+
versionName "2.1.2"
157157
missingDimensionStrategy 'react-native-camera', 'mlkit'
158158
multiDexEnabled true
159159
}

ios/Lisk.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -867,7 +867,7 @@
867867
buildSettings = {
868868
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
869869
CLANG_ENABLE_MODULES = YES;
870-
CURRENT_PROJECT_VERSION = 2;
870+
CURRENT_PROJECT_VERSION = 6;
871871
DEVELOPMENT_TEAM = 58UK9RE9TP;
872872
ENABLE_BITCODE = NO;
873873
INFOPLIST_FILE = Lisk/Info.plist;
@@ -894,7 +894,7 @@
894894
buildSettings = {
895895
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
896896
CLANG_ENABLE_MODULES = YES;
897-
CURRENT_PROJECT_VERSION = 2;
897+
CURRENT_PROJECT_VERSION = 6;
898898
DEVELOPMENT_TEAM = 58UK9RE9TP;
899899
INFOPLIST_FILE = Lisk/Info.plist;
900900
IPHONEOS_DEPLOYMENT_TARGET = 12.0;

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Lisk",
3-
"version": "2.1.0",
3+
"version": "2.1.2",
44
"description": "The Lisk official mobile wallet",
55
"homepage": "https://github.com/LiskHQ/lisk-mobile",
66
"bugs": "https://github.com/LiskHQ/lisk-mobile/issues",

src/components/screens/intro/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ import styles from './styles';
2424
)
2525
class Intro extends React.Component {
2626
skip() {
27-
AsyncStorage.setItem('@lisk-mobile-intro', 'true');
28-
this.props.navigation.navigate('SignIn', { signOut: true });
27+
AsyncStorage.setItem('@lisk-mobile-intro', 'true');
28+
this.props.navigation.navigate('SignIn', { signOut: true });
2929
}
3030

3131
componentDidMount() {

src/store/reducers/settings.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const fallback = (settings) => {
2929
? settings.currency
3030
: currencyKeys[0];
3131

32-
settings.token.active = tokenKeys[0]
32+
settings.token.active = tokenKeys[0];
3333
return settings;
3434
};
3535

src/utilities/passphrase.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ const fullWordsList = Lisk.passphrase.Mnemonic.wordlists.EN;
3131
* {String} message - A descriptive message for what went wrong
3232
*/
3333
export const validatePassphrase = passphrase => {
34-
const trimmedPassphrase = passphrase?.trim?.() || ''
34+
const trimmedPassphrase = passphrase?.trim?.() || '';
3535
if (trimmedPassphrase.length === 0) {
3636
return [{ code: 'empty_value', message: 'Invalid Passphrase' }];
3737
}

0 commit comments

Comments
 (0)