| 1 | /* |
| 2 | * Copyright (c) 2020, the Dart project authors. Please see the AUTHORS file |
| 3 | * for details. All rights reserved. Use of this source code is governed by a |
| 4 | * BSD-style license that can be found in the LICENSE file. |
| 5 | */ |
| 6 | |
| 7 | #ifndef RUNTIME_INCLUDE_DART_VERSION_H_ |
| 8 | #define RUNTIME_INCLUDE_DART_VERSION_H_ |
| 9 | |
| 10 | // On breaking changes the major version is increased. |
| 11 | // On backwards compatible changes the minor version is increased. |
| 12 | // The versioning covers the symbols exposed in dart_api_dl.h |
| 13 | #define DART_API_DL_MAJOR_VERSION 1 |
| 14 | #define DART_API_DL_MINOR_VERSION 1 |
| 15 | |
| 16 | #endif /* RUNTIME_INCLUDE_DART_VERSION_H_ */ /* NOLINT */ |
| 17 | |