fix minor API version

This commit is contained in:
korelstar 2022-08-13 17:09:02 +02:00
parent f5905b60f0
commit 3bd2d58b47
3 changed files with 3 additions and 3 deletions

View File

@ -10,7 +10,7 @@ In this document, the Notes API major version 1 and all its minor versions are d
| **1.0** | Notes 3.3 (May 2020) | Separate title, no auto rename based on content |
| **1.1** | Notes 3.4 (May 2020) | Filter "Get all notes" by category |
| **1.2** | Notes 4.1 (June 2021) | Preventing lost updates, read-only notes, settings |
| **1.3** | Notes 4.4 (July 2022) | Allow custom file suffixes |
| **1.3** | Notes 4.5 (August 2022) | Allow custom file suffixes |

View File

@ -12,7 +12,7 @@ use OCP\AppFramework\Http\Events\BeforeTemplateRenderedEvent;
class Application extends App implements IBootstrap {
public const APP_ID = 'notes';
public static array $API_VERSIONS = [ '0.2', '1.2' ];
public static array $API_VERSIONS = [ '0.2', '1.3' ];
public function __construct(array $urlParams = []) {
parent::__construct(self::APP_ID, $urlParams);

View File

@ -11,7 +11,7 @@ class APIv1Test extends CommonAPITest {
];
public function __construct() {
parent::__construct('1.2', false);
parent::__construct('1.3', false);
}
/** @depends testCheckForReferenceNotes */