Skip to content
This repository was archived by the owner on Nov 6, 2022. It is now read-only.

Commit 9b0d5b3

Browse files
committed
Bump version to 2.6.0
1 parent 04d28a7 commit 9b0d5b3

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ PLATFORM ?= $(shell sh -c 'uname -s | tr "[A-Z]" "[a-z]"')
2222
HELPER ?=
2323
BINEXT ?=
2424
ifeq (darwin,$(PLATFORM))
25-
SONAME ?= libhttp_parser.2.6.2.dylib
25+
SONAME ?= libhttp_parser.2.7.0.dylib
2626
SOEXT ?= dylib
2727
else ifeq (wine,$(PLATFORM))
2828
CC = winegcc
2929
BINEXT = .exe.so
3030
HELPER = wine
3131
else
32-
SONAME ?= libhttp_parser.so.2.6.2
32+
SONAME ?= libhttp_parser.so.2.7.0
3333
SOEXT ?= so
3434
endif
3535

http_parser.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ extern "C" {
2626

2727
/* Also update SONAME in the Makefile whenever you change these. */
2828
#define HTTP_PARSER_VERSION_MAJOR 2
29-
#define HTTP_PARSER_VERSION_MINOR 6
30-
#define HTTP_PARSER_VERSION_PATCH 2
29+
#define HTTP_PARSER_VERSION_MINOR 7
30+
#define HTTP_PARSER_VERSION_PATCH 0
3131

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

0 commit comments

Comments
 (0)