version.h 515 B

12345678910111213141516171819202122
  1. /*
  2. * Copyright (C) 2019 Intel Corporation. All rights reserved.
  3. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. */
  5. /*
  6. * version.h.in is a template file. version.h is a generated file.
  7. * Please do not edit both files directly.
  8. *
  9. * Any changes to the version should be done in the version.cmake file.
  10. */
  11. #ifndef _WAMR_VERSION_H_
  12. #define _WAMR_VERSION_H_
  13. /* clang-format off */
  14. #define WAMR_VERSION_MAJOR 2
  15. #define WAMR_VERSION_MINOR 2
  16. #define WAMR_VERSION_PATCH 0
  17. /* clang-format on */
  18. #endif