Files
wamr/core/version.h
jammar1 c7b2db1832 Update version to 2.3.0 (#4171)
- Update version to 2.3.0
- Update RELEASE_NOTES.md. Remove commits that forget to squash when PRs were merged, and some updates on commit messages

---------

Co-authored-by: James Marsh <mrshnja@amazon.co.uk>
Co-authored-by: liang.he@intel.com <liang.he@intel.com>
Co-authored-by: TianlongLiang <111852609+TianlongLiang@users.noreply.github.com>
2025-05-14 17:32:00 +08:00

25 lines
593 B
C

/*
* Copyright (C) 2019 Intel Corporation. All rights reserved.
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
*/
/*
* version.h.in is a template file. version.h is a generated file.
* Please do not edit both files directly.
*
* Any changes to the version should be done in build-scripts/version.cmake.
*
* Continue to maintain the version.h for certain embedded platforms.
*/
#ifndef _WAMR_VERSION_H_
#define _WAMR_VERSION_H_
/* clang-format off */
#define WAMR_VERSION_MAJOR 2
#define WAMR_VERSION_MINOR 3
#define WAMR_VERSION_PATCH 0
/* clang-format on */
#endif