发布新版本

This commit is contained in:
2023-09-20 10:22:42 +08:00
parent 9d1d885367
commit d4dca5d778
2 changed files with 8 additions and 3 deletions

View File

@@ -209,12 +209,17 @@ class Update extends Command
// 检测now的composer依赖和最新的composer依赖
$last_composer_json = file_get_contents($last_version_dir . '/composer.json');
$output->writeln($last_composer_json);
$output->writeln('请参考以上最新composer文件调整您的依赖');
// 分析出最新需要的但now没有的
// 为用户整理出要手动调整的composer命令
$this->cleanWorkpaceDir();
$output->writeln('更新完成');
// 更新完成
}

View File

@@ -14,12 +14,12 @@ use think\facade\App;
class Version extends Command
{
public const VERSION = 'v2.0.31-dev';
public const VERSION = 'v2.0.31';
public const LAYUI_VERSION = '2.8.16';
public const COMMENT = [
'完更新的基本流程',
'完更新流程',
];
protected function configure()