diff --git a/src/Update/Updates.php b/src/Update/Updates.php index 5fbcc984e..321638be1 100644 --- a/src/Update/Updates.php +++ b/src/Update/Updates.php @@ -29,12 +29,20 @@ public function __construct(Updater $updater) { /** * @Update( * version = "8.5.1", - * description = "Removes deprecated features patch. Moves configuration files to blt subdirectory. Removes .git/hooks symlink." + * description = "Removes deprecated features patch." * ) */ public function update_851() { $this->updater->removePatch("drupal/features", "https://www.drupal.org/files/issues/features-2808303-2.patch"); + } + /** + * @Update( + * version = "8.6.0-beta1", + * description = "Moves configuration files to blt subdirectory. Removes .git/hooks symlink." + * ) + */ + public function update_860() { // Move files to blt subdir. $this->updater->moveFile('project.yml', 'blt/project.yml', TRUE); $this->updater->moveFile('project.local.yml', 'blt/project.local.yml', TRUE); @@ -45,4 +53,5 @@ public function update_851() { $this->updater->getOutput()->writeln('.git/hooks was deleted. Please re-run setup:git-hooks to install git hooks locally.'); } + }