cb02b8726a
go/dart-isolate-ownership-api Change-Id: Ia778a916de3fecec9f0aa1a5c8bc9fd7dd421267 Bug: https://github.com/dart-lang/native/issues/1908 TEST=runtime/vm/dart_api_impl_test.cc Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/407700 Reviewed-by: Martin Kustermann <kustermann@google.com> Commit-Queue: Liam Appelbe <liama@google.com>
17 lines
620 B
C
17 lines
620 B
C
/*
|
|
* Copyright (c) 2020, the Dart project authors. Please see the AUTHORS file
|
|
* for details. All rights reserved. Use of this source code is governed by a
|
|
* BSD-style license that can be found in the LICENSE file.
|
|
*/
|
|
|
|
#ifndef RUNTIME_INCLUDE_DART_VERSION_H_
|
|
#define RUNTIME_INCLUDE_DART_VERSION_H_
|
|
|
|
// On breaking changes the major version is increased.
|
|
// On backwards compatible changes the minor version is increased.
|
|
// The versioning covers the symbols exposed in dart_api_dl.h
|
|
#define DART_API_DL_MAJOR_VERSION 2
|
|
#define DART_API_DL_MINOR_VERSION 6
|
|
|
|
#endif /* RUNTIME_INCLUDE_DART_VERSION_H_ */ /* NOLINT */
|