From dc5b5a1c62cce75e1537aaaa9b190feff7609e2e Mon Sep 17 00:00:00 2001 From: AlessandroMinoccheri Date: Tue, 3 Jan 2023 22:54:38 +0100 Subject: [PATCH] bump to version 0.3.10 --- 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 fdc8cf3b..20297344 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.9", + "version": "0.3.10", "authors": [ { "name": "Pietro Campagnano", diff --git a/tests/Unit/CLI/VersionTest.php b/tests/Unit/CLI/VersionTest.php index feab1c8d..d5aab0cb 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.9', Version::get()); + $this->assertEquals('0.3.10', Version::get()); } }