Skip to content

Commit 2c8334d

Browse files
committed
chore: feature is planned for inclusion in version 2.1.x
1 parent f2ed111 commit 2c8334d

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

packages/dashmate/configs/getConfigFileMigrationsFactory.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1076,13 +1076,6 @@ export default function getConfigFileMigrationsFactory(homeDir, defaultConfigs)
10761076
});
10771077
return configFile;
10781078
},
1079-
'2.0.0-dev.2': (configFile) => {
1080-
Object.entries(configFile.configs)
1081-
.forEach(([, options]) => {
1082-
options.platform.drive.tenderdash.docker.image = 'dashpay/tenderdash:1.5-dev';
1083-
});
1084-
return configFile;
1085-
},
10861079
'2.0.0-rc.1': (configFile) => {
10871080
Object.entries(configFile.configs)
10881081
.forEach(([, options]) => {
@@ -1103,6 +1096,13 @@ export default function getConfigFileMigrationsFactory(homeDir, defaultConfigs)
11031096
});
11041097
return configFile;
11051098
},
1099+
'2.1.0-dev.1': (configFile) => {
1100+
Object.entries(configFile.configs)
1101+
.forEach(([, options]) => {
1102+
options.platform.drive.tenderdash.docker.image = 'dashpay/tenderdash:1.5-dev';
1103+
});
1104+
return configFile;
1105+
},
11061106
};
11071107
}
11081108

0 commit comments

Comments
 (0)