From 8bae5048448c701dc947d1987b99ee91fb62da15 Mon Sep 17 00:00:00 2001 From: AlessandroMinoccheri Date: Fri, 3 May 2024 15:23:00 +0200 Subject: [PATCH] bump to 0.3.31 --- 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 020a5292..c8c7967a 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.30", + "version": "0.3.31", "authors": [ { "name": "Pietro Campagnano", diff --git a/tests/Unit/CLI/VersionTest.php b/tests/Unit/CLI/VersionTest.php index 3938c495..4e8dccb6 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.30', Version::get()); + $this->assertEquals('0.3.31', Version::get()); } }