Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/UpdateScripts/AddAddonSettingsToGitConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class AddAddonSettingsToGitConfig extends UpdateScript
{
public function shouldUpdate($newVersion, $oldVersion)
{
return $this->isUpdatingTo('6.0.0');
return $this->isUpdatingTo('6.0.0-beta.4');
}

public function update()
Expand Down
2 changes: 1 addition & 1 deletion src/UpdateScripts/AddTimezoneConfigOptions.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class AddTimezoneConfigOptions extends UpdateScript

public function shouldUpdate($newVersion, $oldVersion): bool
{
return $this->isUpdatingTo('6.0.0');
return $this->isUpdatingTo('6.0.0-beta.4');
}

public function update(): void
Expand Down
2 changes: 1 addition & 1 deletion src/UpdateScripts/RemoveParentField.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class RemoveParentField extends UpdateScript
{
public function shouldUpdate($newVersion, $oldVersion)
{
return $this->isUpdatingTo('6.0.0');
return $this->isUpdatingTo('6.0.0-beta.4');
}

public function update()
Expand Down
2 changes: 1 addition & 1 deletion src/UpdateScripts/UpdateGlobalVariables.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class UpdateGlobalVariables extends UpdateScript
{
public function shouldUpdate($newVersion, $oldVersion)
{
return $this->isUpdatingTo('6.0.0');
return $this->isUpdatingTo('6.0.0-beta.4');
}

public function update()
Expand Down