From 215fc68fe3f97183b9069ae24d3c30fa4e31ab88 Mon Sep 17 00:00:00 2001 From: antao Date: Fri, 16 Nov 2018 13:56:57 +0800 Subject: [PATCH] Update version to 0.9.7 --- get_version.sh | 2 +- orm_lib/inc/drogon/orm/Transaction.h | 23 ----------------------- 2 files changed, 1 insertion(+), 24 deletions(-) delete mode 100644 orm_lib/inc/drogon/orm/Transaction.h diff --git a/get_version.sh b/get_version.sh index dc243e2f..a1f2c509 100755 --- a/get_version.sh +++ b/get_version.sh @@ -3,7 +3,7 @@ GIT_VER=`git log|grep commit|wc -l|sed -e "s/^ *//"` MD5=`git log|head -1|awk '{printf $2}'` TMP_FILE=/tmp/version -echo "#define VERSION \"0.9.6.$GIT_VER\"" > ${TMP_FILE} +echo "#define VERSION \"0.9.7.$GIT_VER\"" > ${TMP_FILE} echo "#define VERSION_MD5 \"$MD5\"" >> ${TMP_FILE} if [ ! -f $1 ];then mv -f ${TMP_FILE} $1 diff --git a/orm_lib/inc/drogon/orm/Transaction.h b/orm_lib/inc/drogon/orm/Transaction.h deleted file mode 100644 index 4792d3b6..00000000 --- a/orm_lib/inc/drogon/orm/Transaction.h +++ /dev/null @@ -1,23 +0,0 @@ -/** - * - * Transaction.h - * An Tao - * - * Copyright 2018, An Tao. All rights reserved. - * Use of this source code is governed by a MIT license - * that can be found in the License file. - * - * - */ - -#pragma once - -#include - -namespace drogon -{ -namespace orm -{ - -} // namespace orm -} // namespace drogon