ithewei 2 年之前
父节点
当前提交
582f599d0e
共有 3 个文件被更改,包括 3 次插入3 次删除
  1. 1 1
      .github/workflows/CI.yml
  2. 1 1
      CMakeLists.txt
  3. 1 1
      base/hversion.h

+ 1 - 1
.github/workflows/CI.yml

@@ -20,7 +20,7 @@ jobs:
         run: |
           sudo apt update
           sudo apt install libssl-dev libnghttp2-dev
-          ./configure --with-openssl --with-nghttp2
+          ./configure --with-openssl --with-nghttp2 --with-kcp --with-mqtt
           make libhv evpp
 
       - name: test

+ 1 - 1
CMakeLists.txt

@@ -1,6 +1,6 @@
 cmake_minimum_required(VERSION 3.6)
 
-project(hv VERSION 1.3.0)
+project(hv VERSION 1.3.1)
 
 option(BUILD_SHARED "build shared library" ON)
 option(BUILD_STATIC "build static library" ON)

+ 1 - 1
base/hversion.h

@@ -8,7 +8,7 @@ BEGIN_EXTERN_C
 
 #define HV_VERSION_MAJOR    1
 #define HV_VERSION_MINOR    3
-#define HV_VERSION_PATCH    0
+#define HV_VERSION_PATCH    1
 
 #define HV_VERSION_STRING   STRINGIFY(HV_VERSION_MAJOR) "." \
                             STRINGIFY(HV_VERSION_MINOR) "." \