From feae95a3a69f111bc1897b9048d9acbc290992f9 Mon Sep 17 00:00:00 2001 From: Fedor Indutny Date: Sun, 17 Jul 2016 19:23:09 -0400 Subject: [PATCH] Bump version to 2.7.1 --- Makefile | 4 ++-- http_parser.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 5f4eb22..b2476db 100644 --- a/Makefile +++ b/Makefile @@ -22,14 +22,14 @@ PLATFORM ?= $(shell sh -c 'uname -s | tr "[A-Z]" "[a-z]"') HELPER ?= BINEXT ?= ifeq (darwin,$(PLATFORM)) -SONAME ?= libhttp_parser.2.7.0.dylib +SONAME ?= libhttp_parser.2.7.1.dylib SOEXT ?= dylib else ifeq (wine,$(PLATFORM)) CC = winegcc BINEXT = .exe.so HELPER = wine else -SONAME ?= libhttp_parser.so.2.7.0 +SONAME ?= libhttp_parser.so.2.7.1 SOEXT ?= so endif diff --git a/http_parser.h b/http_parser.h index 105ae51..ea26394 100644 --- a/http_parser.h +++ b/http_parser.h @@ -27,7 +27,7 @@ extern "C" { /* Also update SONAME in the Makefile whenever you change these. */ #define HTTP_PARSER_VERSION_MAJOR 2 #define HTTP_PARSER_VERSION_MINOR 7 -#define HTTP_PARSER_VERSION_PATCH 0 +#define HTTP_PARSER_VERSION_PATCH 1 #include #if defined(_WIN32) && !defined(__MINGW32__) && \