v9.11 ESR is the latest supported ESR version. Ticket https://mattermost.atlassian.net/browse/CLD-8696 ```release-note NONE ```
16 lines
412 B
TypeScript
16 lines
412 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 = '9.11.0';
|
|
export const MAJOR_VERSION = 9;
|
|
export const MIN_VERSION = 11;
|
|
export const PATCH_VERSION = 0;
|
|
|
|
export default {
|
|
MIN_REQUIRED_VERSION,
|
|
FULL_VERSION,
|
|
MAJOR_VERSION,
|
|
MIN_VERSION,
|
|
PATCH_VERSION,
|
|
};
|