diff options
| -rw-r--r-- | CMakeLists.txt | 7 | ||||
| -rw-r--r-- | ChangeLog | 7 | ||||
| -rw-r--r-- | THANKS | 3 | ||||
| -rw-r--r-- | include/uriparser/Uri.h | 2 | ||||
| -rw-r--r-- | include/uriparser/UriBase.h | 2 | ||||
| -rw-r--r-- | liburiparser.pc.in | 2 | 
6 files changed, 18 insertions, 5 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 749fea1..ceb79e0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -38,12 +38,12 @@ cmake_minimum_required(VERSION 3.3)  project(uriparser      VERSION -        0.9.2 +        0.9.3  )  # See https://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html  set(URIPARSER_SO_CURRENT    1) -set(URIPARSER_SO_REVISION  25) +set(URIPARSER_SO_REVISION  26)  set(URIPARSER_SO_AGE        0)  include(CheckCCompilerFlag) @@ -151,6 +151,9 @@ if(NOT MSVC)      math(EXPR URIPARSER_SO_CURRENT_MINUS_AGE "${URIPARSER_SO_CURRENT} - ${URIPARSER_SO_AGE}")      set_property(TARGET uriparser PROPERTY VERSION ${URIPARSER_SO_CURRENT_MINUS_AGE}.${URIPARSER_SO_AGE}.${URIPARSER_SO_REVISION})      set_property(TARGET uriparser PROPERTY SOVERSION ${URIPARSER_SO_CURRENT_MINUS_AGE}) +    if(WIN32) +        set_property(TARGET uriparser PROPERTY SUFFIX "-${URIPARSER_SO_CURRENT_MINUS_AGE}${CMAKE_SHARED_LIBRARY_SUFFIX}") +    endif()  endif()  set_property( @@ -2,6 +2,13 @@ NOTE: uriparser is looking for help with a few things:        https://github.com/uriparser/uriparser/labels/help%20wanted        If you can help, please get in touch.  Thanks! +2019-04-28 -- 0.9.3 + +  * Fixed: pkg-config: Fix version line in liburiparser.pc (GitHub #65) +  * Changed: MinGW: Add library version suffix to DLL name +      Thanks to Sandro Mani for the patch! (GitHub #63, #64) +  * Soname: 1:26:0 +  2019-04-22 -- 0.9.2    * Fixed: Add missing extern "C" wrapper to UriIp4.h for use from C++ @@ -26,6 +26,7 @@ Joel Cunningham  Jørgen Ibsen  Juan Pablo González Tognarelli  KangLin +Kouhei Sutou  Kurt Schwehr  Marc Novakowski  Marcin Juszkiewicz @@ -34,6 +35,7 @@ Michael Anthony Puls II  Michelino Chionchio  Michel Zou  Mo McRoberts +myd7349  Periklis Akritidis  Philip de Nier  Radu Hociung @@ -44,6 +46,7 @@ Richard Hodges  Robert Buchholz  Robert Kausch  Ryan Schmidt +Sandro Mani  Schrijvers Luc  Sezai Tekin  Valentin Haenel diff --git a/include/uriparser/Uri.h b/include/uriparser/Uri.h index 3fa2989..9315a12 100644 --- a/include/uriparser/Uri.h +++ b/include/uriparser/Uri.h @@ -1,4 +1,4 @@ -/* d8ad60cf1b0e82c34c1c2201431d8da32aecb7b7d5ad8c4573fb4ecf0f2100e9 (0.9.2+) +/* 8cd64b75589a7efa22989ae85f71e620a99e3c44776338f7d3114eacf73d27a3 (0.9.3+)   *   * uriparser - RFC 3986 URI parsing library   * diff --git a/include/uriparser/UriBase.h b/include/uriparser/UriBase.h index ea7102d..1669159 100644 --- a/include/uriparser/UriBase.h +++ b/include/uriparser/UriBase.h @@ -55,7 +55,7 @@  /* Version */  #define URI_VER_MAJOR           0  #define URI_VER_MINOR           9 -#define URI_VER_RELEASE         2 +#define URI_VER_RELEASE         3  #define URI_VER_SUFFIX_ANSI     ""  #define URI_VER_SUFFIX_UNICODE  URI_ANSI_TO_UNICODE(URI_VER_SUFFIX_ANSI) diff --git a/liburiparser.pc.in b/liburiparser.pc.in index e63dfb5..22c7c95 100644 --- a/liburiparser.pc.in +++ b/liburiparser.pc.in @@ -6,7 +6,7 @@ includedir=@CMAKE_INSTALL_FULL_INCLUDEDIR@  Name: liburiparser  Description: URI parsing and handling library -Version: @VERSION@ +Version: @PROJECT_VERSION@  URL: https://uriparser.github.io/  Libs: -L${libdir} -luriparser  Cflags: -I${includedir}  | 
