Skip to content

Commit dd2bb95

Browse files
committed
v1.3.2 Happy 1024
1 parent 1e3c03e commit dd2bb95

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

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.1)
3+
project(hv VERSION 1.3.2)
44

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

Makefile.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ LDFLAGS += $(addprefix -L, $(LIBDIRS))
192192
LDFLAGS += $(addprefix -l, $(LIBS))
193193

194194
ifeq ($(OS), Windows)
195-
LDFLAGS += -lwinmm -liphlpapi -lws2_32
195+
LDFLAGS += -lsecur32 -lcrypt32 -lwinmm -liphlpapi -lws2_32
196196
ifeq ($(ENABLE_WINDUMP), yes)
197197
CPPFLAGS += -DENABLE_WINDUMP
198198
LDFLAGS += -ldbghelp

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 1
11+
#define HV_VERSION_PATCH 2
1212

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

0 commit comments

Comments
 (0)