diff options
author | Julien Veyssier <julien-nc@posteo.net> | 2023-08-07 13:27:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-07 13:27:19 +0200 |
commit | b4a3f8088ab4ccb53c25ee316fe9b575b41b36f8 (patch) | |
tree | 7be9449f7682896e67cb09f493ec51af58bdb147 | |
parent | 787caefc9a58cf9cd105454b6b5a2d8046509878 (diff) | |
parent | f099aa2714f163947c9ae678b67ea022c69c3d62 (diff) | |
download | nextcloud-server-b4a3f8088ab4ccb53c25ee316fe9b575b41b36f8.tar.gz nextcloud-server-b4a3f8088ab4ccb53c25ee316fe9b575b41b36f8.zip |
Merge pull request #39660 from nextcloud/fix/llm-migration-not-executed
bump oc_version to 28.0.0.1
-rw-r--r-- | tests/lib/TextProcessing/TextProcessingTest.php | 2 | ||||
-rw-r--r-- | version.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/lib/TextProcessing/TextProcessingTest.php b/tests/lib/TextProcessing/TextProcessingTest.php index 790593bac23..3bda73e995b 100644 --- a/tests/lib/TextProcessing/TextProcessingTest.php +++ b/tests/lib/TextProcessing/TextProcessingTest.php @@ -266,7 +266,7 @@ class TextProcessingTest extends \Test\TestCase { public function testNonexistentTask() { $this->expectException(NotFoundException::class); - $this->manager->getTask(98765432456); + $this->manager->getTask(2147483646); } public function testTaskFailure() { diff --git a/version.php b/version.php index 5f477bf58b9..386c676fa36 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'; |