summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Pipping <sebastian@pipping.org>2021-03-18 17:33:14 +0100
committerGitHub <noreply@github.com>2021-03-18 17:33:14 +0100
commit1d78e0140cd55cc3eff5458c9760e9a2f95cd261 (patch)
tree39de6d81447381aeb351baefa6d2fe21d1f9f766
parenta0cb1b38a4c3c89f6dd90d3a9d5c5e39aeb68e92 (diff)
parent3035d5cd3b4b4de583ab29677111ee4c44cc49ac (diff)
downloaduriparser-1d78e0140cd55cc3eff5458c9760e9a2f95cd261.tar.gz
Merge pull request #108 from uriparser/issue-107-prepare-release
Prepare release 0.9.5
-rw-r--r--CMakeLists.txt6
-rw-r--r--ChangeLog11
-rw-r--r--include/uriparser/Uri.h2
-rw-r--r--include/uriparser/UriBase.h2
4 files changed, 12 insertions, 9 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 55859d1..4b1ce44 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -38,14 +38,14 @@ cmake_minimum_required(VERSION 3.3)
project(uriparser
VERSION
- 0.9.4
+ 0.9.5
LANGUAGES
C
)
-# See https://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
+# See https://verbump.de/ for what these numbers do
set(URIPARSER_SO_CURRENT 1)
-set(URIPARSER_SO_REVISION 27)
+set(URIPARSER_SO_REVISION 28)
set(URIPARSER_SO_AGE 0)
include(CheckCCompilerFlag)
diff --git a/ChangeLog b/ChangeLog
index f383d3c..10d8a27 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -6,7 +6,7 @@ NOTE: uriparser is looking for help with a few things:
* Fixed: Fix a bug regarding section "5.2.4. Remove Dot Segments"
of RFC 3986 that affected both normalization and reference resolution
- with regard to trailing slashes (GitHub #92)
+ with regard to trailing slashes (GitHub #92, #97)
Thanks to Dan Pape for the report!
* Fixed: MinGW: Fix name of static library (GitHub #90)
Thanks to SpaceIm for the patch and Sandro Mani for review!
@@ -14,13 +14,14 @@ NOTE: uriparser is looking for help with a few things:
(GitHub #93)
Thanks to jensenrichardson for the patch!
* Fixed: Link against pthreads for (default) -DURIPARSER_BUILD_TESTS=ON
- (GitHub #99)
+ (GitHub #99, #100)
* Fixed: When integrated using CMake function add_subdirectory, installation
could fail due to lack of prefix ${CMAKE_CURRENT_SOURCE_DIR} (GitHub #98)
Thanks for the patch to Shehzan Mohammed!
* Fixed: Addressed MSVC compile warning about lack of /EHsc when compiling
the C++ test suite code (GitHub #102)
* Fixed: Stopped misadvertising wide characters as Unicode support
+ (GitHub #104)
* Added: CMake option URIPARSER_WARNINGS_AS_ERRORS=(ON|OFF)
to turn compile warnings into errors, defaults to "OFF" (GitHub #102)
* Improved: pkg-config: Use ${prefix} and ${exec_prefix} to ease
@@ -32,9 +33,11 @@ NOTE: uriparser is looking for help with a few things:
be used to enforce a specific location (GitHub #103)
Thanks for his help to Andreas Sturmlechner!
* Improved: Make documentation use pkg-config in example on how to
- check for uriparser from within configure.ac (GNU Autoconf) (GitHub #37)
+ check for uriparser from within configure.ac (GNU Autoconf)
+ (GitHub #37, #106)
* Improved: In testing code, add a missing 'extern "C"' (GitHub #109)
Thanks to Jørgen Ibsen for the patch!
+ * Soname: 1:28:0 — see https://verbump.de/ for what these numbers do
2020-05-31 -- 0.9.4
@@ -56,7 +59,7 @@ NOTE: uriparser is looking for help with a few things:
* Added: CMake option URIPARSER_ENABLE_INSTALL to toggle installation of
files, defaults to "ON" (GitHub #74, #75)
Thanks to Scott Donelan for the patch!
- * Soname: 1:26:0
+ * Soname: 1:27:0
2019-04-28 -- 0.9.3
diff --git a/include/uriparser/Uri.h b/include/uriparser/Uri.h
index e822d33..44d8760 100644
--- a/include/uriparser/Uri.h
+++ b/include/uriparser/Uri.h
@@ -1,4 +1,4 @@
-/* 520782e6334595efe9dee874cfa720d7b49de30fa51caba8bce352e55f521ee1 (0.9.4+)
+/* 6db8b5726a796167bb96b3d83ff9ac6792a01474dbe3778deb3c2a25d60b3693 (0.9.5+)
*
* uriparser - RFC 3986 URI parsing library
*
diff --git a/include/uriparser/UriBase.h b/include/uriparser/UriBase.h
index 4147882..565abcf 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 4
+#define URI_VER_RELEASE 5
#define URI_VER_SUFFIX_ANSI ""
#define URI_VER_SUFFIX_UNICODE URI_ANSI_TO_UNICODE(URI_VER_SUFFIX_ANSI)