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')