From af113ddad4bc435364b8be91996bdf546b1448a5 Mon Sep 17 00:00:00 2001 From: hamza221 Date: Tue, 1 Aug 2023 17:08:16 +0200 Subject: [PATCH 1/2] bump oc_version to 28.0.0.1 Signed-off-by: hamza221 --- version.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.php b/version.php index 5f477bf58b956..386c676fa363b 100644 --- a/version.php +++ b/version.php @@ -30,7 +30,7 @@ // between betas, final and RCs. This is _not_ the public version number. Reset minor/patch level // when updating major/minor version number. -$OC_Version = [28, 0, 0, 0]; +$OC_Version = [28, 0, 0, 1]; // The human-readable string $OC_VersionString = '28.0.0 dev'; From f62711d2ae78d807bbd3675ff26aa8852a18b7c1 Mon Sep 17 00:00:00 2001 From: Marcel Klehr Date: Mon, 7 Aug 2023 12:03:11 +0200 Subject: [PATCH 2/2] Fix TextProcessing test for 32bit Signed-off-by: Marcel Klehr --- tests/lib/TextProcessing/TextProcessingTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/lib/TextProcessing/TextProcessingTest.php b/tests/lib/TextProcessing/TextProcessingTest.php index 797571019cebb..1649072ae8c5c 100644 --- a/tests/lib/TextProcessing/TextProcessingTest.php +++ b/tests/lib/TextProcessing/TextProcessingTest.php @@ -259,7 +259,7 @@ public function testMultipleProvidersShouldBeRegisteredAndRunCorrectly() { public function testNonexistentTask() { $this->expectException(NotFoundException::class); - $this->manager->getTask(98765432456); + $this->manager->getTask(2147483646); } public function testTaskFailure() {