Version bump

This commit is contained in:
Manoj Vivek 2024-08-17 09:18:49 +05:30
parent 72927644fa
commit 5326597668
3 changed files with 5 additions and 5 deletions

View file

@ -1,7 +1,7 @@
{
"name": "Responsively-App",
"productName": "ResponsivelyApp",
"version": "1.13.0",
"version": "1.14.0",
"description": "A developer-friendly browser for developing responsive web apps",
"keywords": [
"developer-tools",

View file

@ -1,6 +1,6 @@
{
"name": "ResponsivelyApp",
"version": "1.13.0",
"version": "1.14.0",
"description": "A developer-friendly browser for developing responsive web apps",
"license": "MIT",
"author": {

View file

@ -86,7 +86,7 @@ export const migrations = {
},
]);
},
'1.13.0': (store: Store) => {
'1.14.0': (store: Store) => {
// Migrate dpi to dpr in custom devices
try {
const previousCustomDevices: any[] = store.get(
@ -102,11 +102,11 @@ export const migrations = {
});
store.set('deviceManager.customDevices', newCustomDevices);
console.log(
'Migration for 1.13.0 successful',
'Migration for 1.14.0 successful',
store.get('deviceManager.customDevices')
);
} catch (e) {
console.log('Migration for 1.13.0 failed', e);
console.log('Migration for 1.14.0 failed', e);
}
},
};