From 582f599d0e067d2f09b1403b88c5d5ef62fceefa Mon Sep 17 00:00:00 2001 From: ithewei Date: Wed, 24 May 2023 19:50:46 +0800 Subject: [PATCH] v1.3.1 --- .github/workflows/CI.yml | 2 +- CMakeLists.txt | 2 +- base/hversion.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index fe0aff422..42db71769 100644 --- a/.github/workflows/CI.yml +++ b/.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 diff --git a/CMakeLists.txt b/CMakeLists.txt index 59806fb2e..f165424f0 100644 --- a/CMakeLists.txt +++ b/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) diff --git a/base/hversion.h b/base/hversion.h index 01d339263..66b82e0c0 100644 --- a/base/hversion.h +++ b/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) "." \