Skip to content

Commit

Permalink
v0.5.1
Browse files Browse the repository at this point in the history
Welcome PHP 8.1
- update GitHub actions workflows for 8.1
- add option for 8.1 in the UI
  • Loading branch information
roberto-butti committed Nov 27, 2021
1 parent d19473e commit 12f0b6f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 0.5.1 - 2021-11-27
Welcome PHP 8.1
- update GitHub actions workflows for 8.1
- add option for 8.1 in the UI

## 0.5.0 - 2021-11-21
- Now you can **deploy with Forge** with your CI workflow
- **UI refactoring**: Introducing DaisyUI components
Expand Down
2 changes: 1 addition & 1 deletion app/Traits/Form/BaseWorkflow.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public function loadDefaultsBaseWorkflow(): void
$this->postgresqlVersion = "latest";
$this->postgresqlDatabaseName = "db_test_laravel";
$this->postgresqlDatabasePort = 55432;
$this->stepPhpVersions = ["8.0", "7.4"];
$this->stepPhpVersions = ["8.1", "8.0", "7.4"];
$this->stepNodejs = false;
$this->stepNodejsVersion = "16.x";
$this->stepCachePackages = true;
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hi-folks/ghygen",
"version": "0.5.0",
"version": "0.5.1",
"type": "project",
"description": "Ghygen is a GitHub Actions configurator for your Laravel Application.",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion resources/views/livewire/configurator-form.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@
model="stepPhpVersions"
name="stepPhpVersions"
label="PHP Versions"
:list="['8.0'=>'8.0','7.4'=>'7.4','7.3'=>'7.3', '8.1' => '8.1 experimental']"
:list="['8.1' => '8.1', '8.0'=>'8.0','7.4'=>'7.4','7.3'=>'7.3']"
help="Select PHP Versions (Multiple)"
multiselect=1>
</x-form.input-select>
Expand Down

0 comments on commit 12f0b6f

Please sign in to comment.