Bump version to 2.6.0
diff --git a/Makefile b/Makefile
index 970bdc4..5f4eb22 100644
--- a/Makefile
+++ b/Makefile
@@ -22,14 +22,14 @@
HELPER ?=
BINEXT ?=
ifeq (darwin,$(PLATFORM))
-SONAME ?= libhttp_parser.2.6.2.dylib
+SONAME ?= libhttp_parser.2.7.0.dylib
SOEXT ?= dylib
else ifeq (wine,$(PLATFORM))
CC = winegcc
BINEXT = .exe.so
HELPER = wine
else
-SONAME ?= libhttp_parser.so.2.6.2
+SONAME ?= libhttp_parser.so.2.7.0
SOEXT ?= so
endif
diff --git a/http_parser.h b/http_parser.h
index f5bd727..105ae51 100644
--- a/http_parser.h
+++ b/http_parser.h
@@ -26,8 +26,8 @@
/* Also update SONAME in the Makefile whenever you change these. */
#define HTTP_PARSER_VERSION_MAJOR 2
-#define HTTP_PARSER_VERSION_MINOR 6
-#define HTTP_PARSER_VERSION_PATCH 2
+#define HTTP_PARSER_VERSION_MINOR 7
+#define HTTP_PARSER_VERSION_PATCH 0
#include <sys/types.h>
#if defined(_WIN32) && !defined(__MINGW32__) && \