Skip to content

Commit

Permalink
Bump version to v2.1.2 (#2091)
Browse files Browse the repository at this point in the history
* ⬆️ Bump version

* 💅 Lint fixes
  • Loading branch information
Balanced02 authored Oct 20, 2023
1 parent a14cbc6 commit fd4a51a
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,8 @@ android {
applicationId "io.lisk.mobile"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 67
versionName "2.1.0"
versionCode 80
versionName "2.1.2"
missingDimensionStrategy 'react-native-camera', 'mlkit'
multiDexEnabled true
}
Expand Down
4 changes: 2 additions & 2 deletions ios/Lisk.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -867,7 +867,7 @@
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CURRENT_PROJECT_VERSION = 2;
CURRENT_PROJECT_VERSION = 6;
DEVELOPMENT_TEAM = 58UK9RE9TP;
ENABLE_BITCODE = NO;
INFOPLIST_FILE = Lisk/Info.plist;
Expand All @@ -894,7 +894,7 @@
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CURRENT_PROJECT_VERSION = 2;
CURRENT_PROJECT_VERSION = 6;
DEVELOPMENT_TEAM = 58UK9RE9TP;
INFOPLIST_FILE = Lisk/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Lisk",
"version": "2.1.0",
"version": "2.1.2",
"description": "The Lisk official mobile wallet",
"homepage": "https://github.com/LiskHQ/lisk-mobile",
"bugs": "https://github.com/LiskHQ/lisk-mobile/issues",
Expand Down
4 changes: 2 additions & 2 deletions src/components/screens/intro/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ import styles from './styles';
)
class Intro extends React.Component {
skip() {
AsyncStorage.setItem('@lisk-mobile-intro', 'true');
this.props.navigation.navigate('SignIn', { signOut: true });
AsyncStorage.setItem('@lisk-mobile-intro', 'true');
this.props.navigation.navigate('SignIn', { signOut: true });
}

componentDidMount() {
Expand Down
2 changes: 1 addition & 1 deletion src/store/reducers/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const fallback = (settings) => {
? settings.currency
: currencyKeys[0];

settings.token.active = tokenKeys[0]
settings.token.active = tokenKeys[0];
return settings;
};

Expand Down
2 changes: 1 addition & 1 deletion src/utilities/passphrase.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const fullWordsList = Lisk.passphrase.Mnemonic.wordlists.EN;
* {String} message - A descriptive message for what went wrong
*/
export const validatePassphrase = passphrase => {
const trimmedPassphrase = passphrase?.trim?.() || ''
const trimmedPassphrase = passphrase?.trim?.() || '';
if (trimmedPassphrase.length === 0) {
return [{ code: 'empty_value', message: 'Invalid Passphrase' }];
}
Expand Down

0 comments on commit fd4a51a

Please sign in to comment.