mattermost-mobile/app/constants/supported_server.ts
Amy Blais 35023ea389
Update supported ESR version (#7316)
* Update README.md

* Update full_description.txt

* Update changelog

* update app to alert on servers below 7.8.0

---------

Co-authored-by: Elias Nahum <nahumhbl@gmail.com>
2023-04-28 11:56:07 -04:00

16 lines
410 B
TypeScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
export const MIN_REQUIRED_VERSION = '5.26.2';
export const FULL_VERSION = '7.8.0';
export const MAJOR_VERSION = 7;
export const MIN_VERSION = 1;
export const PATCH_VERSION = 0;
export default {
MIN_REQUIRED_VERSION,
FULL_VERSION,
MAJOR_VERSION,
MIN_VERSION,
PATCH_VERSION,
};