From e29c207432d84f3fb7c2bfed3d15642583977d30 Mon Sep 17 00:00:00 2001 From: Pietro Campagnano Date: Tue, 16 Jan 2024 12:29:59 +0100 Subject: [PATCH] Bump to 0.3.28 --- composer.json | 2 +- tests/Unit/CLI/VersionTest.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 950ffa3b..c68271d9 100644 --- a/composer.json +++ b/composer.json @@ -3,7 +3,7 @@ "description": "Enforce architectural constraints in your PHP applications", "type": "library", "license": "MIT", - "version": "0.3.27", + "version": "0.3.28", "authors": [ { "name": "Pietro Campagnano", diff --git a/tests/Unit/CLI/VersionTest.php b/tests/Unit/CLI/VersionTest.php index 8b62130d..2537f7fe 100644 --- a/tests/Unit/CLI/VersionTest.php +++ b/tests/Unit/CLI/VersionTest.php @@ -11,6 +11,6 @@ class VersionTest extends TestCase { public function test_it_should_return_version(): void { - $this->assertEquals('0.3.27', Version::get()); + $this->assertEquals('0.3.28', Version::get()); } }