From f428a8c1d68a75c92ff6b2996d79f822c19dafc5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20D?= Date: Sun, 20 Dec 2020 20:46:21 +0100 Subject: [PATCH] * [MOD] Bump version number MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Rubén D --- lib/SP/Services/Install/Installer.php | 4 ++-- tests/SP/Services/Crypt/SecureSessionServiceTest.php | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/SP/Services/Install/Installer.php b/lib/SP/Services/Install/Installer.php index 702d28e7..730eeb77 100644 --- a/lib/SP/Services/Install/Installer.php +++ b/lib/SP/Services/Install/Installer.php @@ -60,8 +60,8 @@ final class Installer extends Service /** * sysPass' version and build number */ - const VERSION = [3, 1, 3]; - const VERSION_TEXT = '3.1'; + const VERSION = [3, 2, 0]; + const VERSION_TEXT = '3.2'; const BUILD = 20122001; /** diff --git a/tests/SP/Services/Crypt/SecureSessionServiceTest.php b/tests/SP/Services/Crypt/SecureSessionServiceTest.php index e0017ce8..600155f1 100644 --- a/tests/SP/Services/Crypt/SecureSessionServiceTest.php +++ b/tests/SP/Services/Crypt/SecureSessionServiceTest.php @@ -51,6 +51,7 @@ class SecureSessionServiceTest extends TestCase $service = $dic->get(SecureSessionService::class); $stub = $this->createMock(UUIDCookie::class); + $stub->method('loadCookie') ->willReturn(uniqid('', true)); $stub->method('createCookie')