From 652cee957a93cea0c6f7b818db28a62dd9839354 Mon Sep 17 00:00:00 2001 From: AlessandroMinoccheri Date: Thu, 27 Apr 2023 12:54:07 +0200 Subject: [PATCH] bump to 0.3.24 --- 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 5f12e146..1360e4c3 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.23", + "version": "0.3.24", "authors": [ { "name": "Pietro Campagnano", diff --git a/tests/Unit/CLI/VersionTest.php b/tests/Unit/CLI/VersionTest.php index 7c70128b..50747b46 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.23', Version::get()); + $this->assertEquals('0.3.24', Version::get()); } }