dart-sdk/tools/VERSION
Daco Harkes 51f4574e50 Reland "[vm/ffi] Support structs on 32bit architectures"
Fixes alignment checks on GCC <= 7 and Clang <= 7.

Fixes: https://github.com/dart-lang/sdk/issues/37559
Fixes: https://github.com/dart-lang/sdk/issues/36334

Original CL is in patchset 1.

Tested GCC 7 and Clang 7 behavior of alignof and offsetof manually (our CQ uses newer tooling).

Change-Id: I828b00ad3d36be68a0d28b0a710fea938ca17784
Cq-Include-Trybots: luci.dart.try:vm-ffi-android-debug-arm-try, app-kernel-linux-debug-x64-try, vm-kernel-linux-debug-simdbc64-try,vm-kernel-linux-debug-ia32-try,vm-dartkb-linux-debug-simarm64-try,vm-kernel-win-debug-x64-try,vm-kernel-win-debug-ia32-try,vm-dartkb-linux-debug-x64-try,vm-kernel-precomp-linux-debug-x64-try,vm-ffi-android-product-arm-try,vm-dartkb-linux-release-x64-abi-try
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/112254
Reviewed-by: Martin Kustermann <kustermann@google.com>
Commit-Queue: Daco Harkes <dacoharkes@google.com>
2019-08-09 14:14:32 +00:00

40 lines
1.1 KiB
Plaintext

# This file is used by tools/utils.py to generate version strings.
# The numbers are changed as follows:
#
# * New release cycle has begun (i.e. stable release was just made):
# - increase MINOR by 1
# - set "PATCH 0"
# - set "PRERELEASE 0"
# - set "PRERELEASE_PATCH 0"
#
# * Doing a push-to-trunk from bleeding_edge:
# (The first push-to-trunk in the release cycle will set PRERELEASE to 0)
# - increase PRERELEASE by 1
# - set "PRERELEASE_PATCH 0"
#
# * Doing a cherry-pick to trunk:
# - increase PRERELEASE_PATCH by 1
#
# * Making a stable release (i.e. new stable branch):
# - set "PRERELEASE 0"
# - set "PRERELEASE_PATCH 0"
# The new stable release version will sort higher than the prereleases.
#
# * Making cherry-picks to stable channel
# - increase PATCH by 1
#
# * Making a change to the ABI:
# - increase ABI_VERSION by 1
#
# * Deprecating an old ABI version:
# - increase OLDEST_SUPPORTED_ABI_VERSION to the version that is supported.
#
CHANNEL be
MAJOR 2
MINOR 5
PATCH 0
PRERELEASE 0
PRERELEASE_PATCH 0
ABI_VERSION 11
OLDEST_SUPPORTED_ABI_VERSION 11