From 9ec497f76b3fc1b096428a3989cc3e5f61a9d365 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Budziak?= Date: Wed, 19 Aug 2020 19:32:06 +0200 Subject: [PATCH] Version 3.15.1 --- includes/System/Application.php | 2 +- tests/Unit/Application/VersionTest.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/System/Application.php b/includes/System/Application.php index 993245148..d43b56f12 100644 --- a/includes/System/Application.php +++ b/includes/System/Application.php @@ -12,7 +12,7 @@ class Application extends Container { - const VERSION = "3.15.0"; + const VERSION = "3.15.1"; /** @var array */ private $providers = [ diff --git a/tests/Unit/Application/VersionTest.php b/tests/Unit/Application/VersionTest.php index 32c5a04b3..1285a9f66 100644 --- a/tests/Unit/Application/VersionTest.php +++ b/tests/Unit/Application/VersionTest.php @@ -8,6 +8,6 @@ class VersionTest extends TestCase /** @test */ public function version_is_ok() { - $this->assertEquals("3.15.0", $this->app->version()); + $this->assertEquals("3.15.1", $this->app->version()); } }