mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-02-06 23:15:16 +00:00
0d9e527fa0
Upgrade version number to 1.1.2, update RELEASE_NOTES.md and clear several compile warnings.
12 lines
274 B
C
12 lines
274 B
C
/*
|
|
* Copyright (C) 2019 Intel Corporation. All rights reserved.
|
|
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
*/
|
|
|
|
#ifndef _WAMR_VERSION_H_
|
|
#define _WAMR_VERSION_H_
|
|
#define WAMR_VERSION_MAJOR 1
|
|
#define WAMR_VERSION_MINOR 1
|
|
#define WAMR_VERSION_PATCH 2
|
|
#endif
|