From 887b12c3dbb8311d130e628d9cf0bd9fed0a89b3 Mon Sep 17 00:00:00 2001 From: haozi007 Date: Sat, 8 Oct 2022 15:36:55 +0800 Subject: [PATCH] update version to 2.0.17 Signed-off-by: haozi007 --- CMakeLists.txt | 2 +- cmake/options.cmake | 2 +- iSulad.spec | 4 ++-- release_notes | 17 +++++++++++++++++ 4 files changed, 21 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3b3dd5ff7..375c6e8fc 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 "585966f81816a4ca2b2204bee6268ef477c04b9c") +set(GIT_COMMIT_HASH "5e254f8182526b5fde84eb170c52663697bab3f4") 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 5098d3766..7a141fefb 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.16") + set(ISULAD_VERSION "2.0.17") message("${BoldBlue}Version: ${ISULAD_VERSION} ${ColourReset}") endif() diff --git a/iSulad.spec b/iSulad.spec index c0dc47399..e9826a29c 100644 --- a/iSulad.spec +++ b/iSulad.spec @@ -1,5 +1,5 @@ -%global _version 2.0.16 -%global _release 3 +%global _version 2.0.17 +%global _release 1 %global is_systemd 1 %global enable_shimv2 1 %global enable_embedded 1 diff --git a/release_notes b/release_notes index b89ea38b6..14b10b8b4 100644 --- a/release_notes +++ b/release_notes @@ -1,3 +1,20 @@ +2022-10-08 ubuntu release 2.0.17 + - !1650 add static for udev_wait_pth_t function + - !1644 fix maybe uwait use after free + - !1625 add timezone CI test + - !1622 add hostname env for container + - !1618 calculate timezone by tm_gmtoff + - !1616 invalid free default-runtime and cri-runtime after free json-confs + - !1613 add isulad args Merge pull request !1613 from zhangxiaoyu/stable-v2.0.x + - !1611 Remove redundant header files + - !1609 adapt to openssl 3.0 + - !1605 cleancode about rest register container + - !1601 fix memleak + + dev stats: + - 21 files changed, 585 insertions(+), 218 deletions(-) + - contributors: zhangxiaoyu, haozi007, wujing, WangFengTu, zhongtao + 2022-08-23 root release 2.0.16 - !1590 [codecheck] cleancode about big function and magic number - !1591 【codecheck】handle some warnings -- Gitee