From a9e5150c826775961cb6bf5bdd9dc86087db01cc Mon Sep 17 00:00:00 2001 From: Wenyong Huang Date: Fri, 30 Sep 2022 17:24:43 +0800 Subject: [PATCH] Upgrade version number to 1.1.0 (#1536) --- build-scripts/config_common.cmake | 2 +- core/version.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build-scripts/config_common.cmake b/build-scripts/config_common.cmake index 21ddc501..1c3bd221 100644 --- a/build-scripts/config_common.cmake +++ b/build-scripts/config_common.cmake @@ -124,7 +124,7 @@ if (NOT DEFINED WAMR_VERSION_MAJOR) endif () if (NOT DEFINED WAMR_VERSION_MINOR) - set (WAMR_VERSION_MINOR 0) + set (WAMR_VERSION_MINOR 1) endif () if (NOT DEFINED WAMR_VERSION_PATCH) diff --git a/core/version.h b/core/version.h index bbe3b78f..f3473f5c 100644 --- a/core/version.h +++ b/core/version.h @@ -9,6 +9,6 @@ #ifndef _WAMR_VERSION_H_ #define _WAMR_VERSION_H_ #define WAMR_VERSION_MAJOR 1 -#define WAMR_VERSION_MINOR 0 +#define WAMR_VERSION_MINOR 1 #define WAMR_VERSION_PATCH 0 #endif