Merge pull request #39660 from nextcloud/fix/llm-migration-not-executed

bump oc_version to 28.0.0.1
This commit is contained in:
Julien Veyssier 2023-08-07 13:27:19 +02:00 committed by GitHub
commit b4a3f8088a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -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() {

View file

@ -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';