Skip to content

Commit dd74753

Browse files
committedFeb 9, 2018
Bump version to 2.8.0
1 parent 921d558 commit dd74753

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

‎Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ HELPER ?=
2323
BINEXT ?=
2424
SOLIBNAME = libhttp_parser
2525
SOMAJOR = 2
26-
SOMINOR = 7
27-
SOREV = 1
26+
SOMINOR = 8
27+
SOREV = 0
2828
ifeq (darwin,$(PLATFORM))
2929
SOEXT ?= dylib
3030
SONAME ?= $(SOLIBNAME).$(SOMAJOR).$(SOMINOR).$(SOEXT)

‎http_parser.h

+2-2
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 7
30-
#define HTTP_PARSER_VERSION_PATCH 1
29+
#define HTTP_PARSER_VERSION_MINOR 8
30+
#define HTTP_PARSER_VERSION_PATCH 0
3131

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

0 commit comments

Comments
 (0)
Please sign in to comment.