From 3f8de6327d14081c75e819a2c3814dfb5dc29609 Mon Sep 17 00:00:00 2001 From: zhangxiaoyu Date: Tue, 23 Aug 2022 14:16:58 +0800 Subject: [PATCH] update version to 2.0.16 Signed-off-by: zhangxiaoyu --- CMakeLists.txt | 2 +- cmake/options.cmake | 2 +- iSulad.spec | 4 ++-- release_notes | 32 ++++++++++++++++++++++++++++++++ 4 files changed, 36 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4216c57f5..3b3dd5ff7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,7 +9,7 @@ include(cmake/set_build_flags.cmake) #set(CMAKE_C_COMPILER "gcc" CACHE PATH "c compiler") -set(GIT_COMMIT_HASH "db9776baefe6a94c1d40b5b70aea05e75254f6dd") +set(GIT_COMMIT_HASH "585966f81816a4ca2b2204bee6268ef477c04b9c") message("-- commit id: " ${GIT_COMMIT_HASH}) add_definitions(-DISULAD_GIT_COMMIT="${GIT_COMMIT_HASH}") diff --git a/cmake/options.cmake b/cmake/options.cmake index b52a27f97..5098d3766 100644 --- a/cmake/options.cmake +++ b/cmake/options.cmake @@ -6,7 +6,7 @@ endif() option(VERSION "set isulad version" ON) if (VERSION STREQUAL "ON") - set(ISULAD_VERSION "2.0.15") + set(ISULAD_VERSION "2.0.16") message("${BoldBlue}Version: ${ISULAD_VERSION} ${ColourReset}") endif() diff --git a/iSulad.spec b/iSulad.spec index bb6b7ff03..c0dc47399 100644 --- a/iSulad.spec +++ b/iSulad.spec @@ -1,5 +1,5 @@ -%global _version 2.0.15 -%global _release 2 +%global _version 2.0.16 +%global _release 3 %global is_systemd 1 %global enable_shimv2 1 %global enable_embedded 1 diff --git a/release_notes b/release_notes index ead18b8c0..b89ea38b6 100644 --- a/release_notes +++ b/release_notes @@ -1,3 +1,35 @@ +2022-08-23 root release 2.0.16 + - !1590 [codecheck] cleancode about big function and magic number + - !1591 【codecheck】handle some warnings + - !1593 [codecheck]the right brace should take a single line + - !1589 【codecheck】improve code + - !1586 use existing micro OPENSSL_IS_BORINGSSL + - !1581 check snprintf return value + - !1579 [clang-analyzer] fix memory leak and use after free + - !1578 do clean path and check if file exist + - !1577 [clang-anaylzer] ensure derenference of non-null pointer + - !1575 [clang-analyzer] remove dead assignment + - !1573 change default umask to 0022 + - !1571 [clang-analyzer] ensure agrument with nonnull attirbute passed nonnull + - !1569 add fuzz dict Merge pull request !1569 from wangfengtu/add_dict_stable + - !1568 fix exec_request_to_rest forgot to handle suffix Merge pull request !1568 from haozi007/stable + - !1566 Add read and execute permissions for libhttpclient.so and libisulad_tools.so for other users + - !1562 add lose override flag + - !1560 remove unused include files + - !1558 ensure read string must have space store null char + - !1553 set dup_option null after free + - !1551 stop health check monitor before stopping container + - !1550 fix cpu-quota out of range when update to -1 + - !1546 fix cri attach when stdout and stderr are false + - !1543 cherry pick tolerate arch unspecified seccomp profiles to stable branch + - !1538 don't mount shareable dirs if user set mount for dev shm + - !1530 use only TLS v1.2 or later + - !1528 do not use tmpfile() + + dev stats: + - 90 files changed, 589 insertions(+), 415 deletions(-) + - contributors: haozi007, WangFengTu, zhangxiaoyu, Neil.wrz, chengzrz, songbuhuang, zhongtao + 2022-07-13 ubuntu release 2.0.15 - !1523 Add rest api for stats - !1520 stop health check monitor before stopping container Merge pull request !1520 from JingWoo/stable-v2.0.x -- Gitee