From a9d24361a19f3ac5398ea069e316e3eca5ea1f88 Mon Sep 17 00:00:00 2001 From: Attila Fulop <1162360+fulopattila122@users.noreply.github.com> Date: Tue, 14 Mar 2023 19:39:50 +0200 Subject: [PATCH 1/2] Started v3.7-dev --- composer.json | 2 +- resources/manifest.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index b590360..6d516a7 100644 --- a/composer.json +++ b/composer.json @@ -39,7 +39,7 @@ }, "extra": { "branch-alias": { - "dev-master": "3.6.x-dev" + "dev-master": "3.7.x-dev" } } } diff --git a/resources/manifest.php b/resources/manifest.php index e35ad5d..719a575 100644 --- a/resources/manifest.php +++ b/resources/manifest.php @@ -4,5 +4,5 @@ return [ 'name' => 'Vanilo Links Module', - 'version' => '3.6.0' + 'version' => '3.7-dev' ]; From 0305dbd88888b0678987924a95c6ad59080fcbf8 Mon Sep 17 00:00:00 2001 From: StyleCI Bot Date: Tue, 14 Mar 2023 17:43:22 +0000 Subject: [PATCH 2/2] Apply fixes from StyleCI --- Tests/Unit/LinkTypeTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/Unit/LinkTypeTest.php b/Tests/Unit/LinkTypeTest.php index 87c17ba..97f22b6 100644 --- a/Tests/Unit/LinkTypeTest.php +++ b/Tests/Unit/LinkTypeTest.php @@ -69,7 +69,7 @@ public function is_active_attribute_is_a_boolean() /** @test */ public function it_is_active_by_default() { - $this->assertTrue((LinkType::create(['name' => 'Oh I am active']))->fresh()->is_active); + $this->assertTrue(LinkType::create(['name' => 'Oh I am active'])->fresh()->is_active); } /** @test */