Skip to content

Commit 582f599

Browse files
committed
v1.3.1
1 parent 53d3ba0 commit 582f599

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
run: |
2121
sudo apt update
2222
sudo apt install libssl-dev libnghttp2-dev
23-
./configure --with-openssl --with-nghttp2
23+
./configure --with-openssl --with-nghttp2 --with-kcp --with-mqtt
2424
make libhv evpp
2525
2626
- name: test

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required(VERSION 3.6)
22

3-
project(hv VERSION 1.3.0)
3+
project(hv VERSION 1.3.1)
44

55
option(BUILD_SHARED "build shared library" ON)
66
option(BUILD_STATIC "build static library" ON)

base/hversion.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ BEGIN_EXTERN_C
88

99
#define HV_VERSION_MAJOR 1
1010
#define HV_VERSION_MINOR 3
11-
#define HV_VERSION_PATCH 0
11+
#define HV_VERSION_PATCH 1
1212

1313
#define HV_VERSION_STRING STRINGIFY(HV_VERSION_MAJOR) "." \
1414
STRINGIFY(HV_VERSION_MINOR) "." \

0 commit comments

Comments
 (0)