diff --git a/AUTHORS b/AUTHORS index c3c2b45..51b53b1 100644 --- a/AUTHORS +++ b/AUTHORS @@ -47,3 +47,4 @@ Charlie Somerville Fedor Indutny runner Alexis Campailla +David Wragg diff --git a/Makefile b/Makefile index 504c525..3ce463b 100644 --- a/Makefile +++ b/Makefile @@ -19,7 +19,7 @@ # IN THE SOFTWARE. PLATFORM ?= $(shell sh -c 'uname -s | tr "[A-Z]" "[a-z]"') -SONAME ?= libhttp_parser.so.2.2.1 +SONAME ?= libhttp_parser.so.2.3 CC?=gcc AR?=ar diff --git a/http_parser.h b/http_parser.h index 3e28816..ec61a12 100644 --- a/http_parser.h +++ b/http_parser.h @@ -26,8 +26,8 @@ extern "C" { /* Also update SONAME in the Makefile whenever you change these. */ #define HTTP_PARSER_VERSION_MAJOR 2 -#define HTTP_PARSER_VERSION_MINOR 2 -#define HTTP_PARSER_VERSION_PATCH 1 +#define HTTP_PARSER_VERSION_MINOR 3 +#define HTTP_PARSER_VERSION_PATCH 0 #include #if defined(_WIN32) && !defined(__MINGW32__) && (!defined(_MSC_VER) || _MSC_VER<1600)