Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 36f107f

Browse files
committed
Bump version to 2.4.1
1 parent 280af69 commit 36f107f

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,14 @@
1919
# IN THE SOFTWARE.
2020

2121
PLATFORM ?= $(shell sh -c 'uname -s | tr "[A-Z]" "[a-z]"')
22-
SONAME ?= libhttp_parser.so.2.4
22+
SONAME ?= libhttp_parser.so.2.4.1
2323

2424
CC?=gcc
2525
AR?=ar
2626

27+
CPPFLAGS ?=
28+
LDFLAGS ?=
29+
2730
CPPFLAGS += -I.
2831
CPPFLAGS_DEBUG = $(CPPFLAGS) -DHTTP_PARSER_STRICT=1
2932
CPPFLAGS_DEBUG += $(CPPFLAGS_DEBUG_EXTRA)

http_parser.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ extern "C" {
2727
/* Also update SONAME in the Makefile whenever you change these. */
2828
#define HTTP_PARSER_VERSION_MAJOR 2
2929
#define HTTP_PARSER_VERSION_MINOR 4
30-
#define HTTP_PARSER_VERSION_PATCH 0
30+
#define HTTP_PARSER_VERSION_PATCH 1
3131

3232
#include <sys/types.h>
3333
#if defined(_WIN32) && !defined(__MINGW32__) && (!defined(_MSC_VER) || _MSC_VER<1600)

0 commit comments

Comments
 (0)