From d8ba69d6e4a640cb33176847f7390851bdc44d54 Mon Sep 17 00:00:00 2001 From: Shayna Atkinson Date: Wed, 7 May 2025 22:49:40 -0400 Subject: [PATCH] Bump version to 1.2.2 --- app/config/VERSION | 2 +- app/src/Command/UpgradeVersionCommand.php | 7 +++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/app/config/VERSION b/app/config/VERSION index 6085e946..23aa8390 100644 --- a/app/config/VERSION +++ b/app/config/VERSION @@ -1 +1 @@ -1.2.1 +1.2.2 diff --git a/app/src/Command/UpgradeVersionCommand.php b/app/src/Command/UpgradeVersionCommand.php index 11fafc18..c673fb22 100644 --- a/app/src/Command/UpgradeVersionCommand.php +++ b/app/src/Command/UpgradeVersionCommand.php @@ -49,7 +49,10 @@ class UpgradeVersionCommand extends Command { protected $versions = [ "1.0.0" => ['block' => false], "1.1.0" => ['block' => false], - "1.2.0" => ['block' => false, 'post' => 'post120'] + "1.1.1" => ['block' => false], + "1.2.0" => ['block' => false, 'post' => 'post120'], + "1.2.1" => ['block' => false], + "1.2.2" => ['block' => false] ]; // ConsoleIo @@ -304,4 +307,4 @@ protected function validateVersions(string $from, string $to): bool { return true; } -} \ No newline at end of file +}