summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Pipping <sebastian@pipping.org>2022-10-05 16:27:56 +0200
committerGitHub <noreply@github.com>2022-10-05 16:27:56 +0200
commita6291ce5d521c68faf46a1dcee76e5f5ebbbc9f5 (patch)
treeaf9acf3472afd5c1a1e30f39c360ba8b3f789e25
parent4d5c40ecef9001cb300625759cf516f8cb93ee26 (diff)
parentd0f8989c5ed5fcb04ae8c00994c75f4502d89cdc (diff)
downloaduriparser-a6291ce5d521c68faf46a1dcee76e5f5ebbbc9f5.tar.gz
Merge pull request #154 from uriparser/issue-153-prepare-release
Prepare release 0.9.7 (part of #153)
-rw-r--r--CMakeLists.txt4
-rw-r--r--ChangeLog15
-rw-r--r--THANKS4
-rw-r--r--include/uriparser/Uri.h2
-rw-r--r--include/uriparser/UriBase.h2
5 files changed, 22 insertions, 5 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index ed01577..313092a 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -38,14 +38,14 @@ cmake_minimum_required(VERSION 3.3)
project(uriparser
VERSION
- 0.9.6
+ 0.9.7
LANGUAGES
C
)
# See https://verbump.de/ for what these numbers do
set(URIPARSER_SO_CURRENT 1)
-set(URIPARSER_SO_REVISION 29)
+set(URIPARSER_SO_REVISION 30)
set(URIPARSER_SO_AGE 0)
include(CheckCCompilerFlag)
diff --git a/ChangeLog b/ChangeLog
index b06cc75..0e387c8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,15 +2,28 @@ 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!
-xxxx-xx-xx -- x.x.x
+2022-10-05 -- 0.9.7
+ * Fixed: Multiple issues with IPv6 and IPvFuture literal parsing
+ (GitHub #146, GitHub #150)
+ Thanks to Scallop Ye for the report and the pull request!
* Fixed: Fix symbol visibility for -DBUILD_SHARED_LIBS=OFF (GitHub #139,
GitHub #141); thanks to Mariusz Zaborski for the report!
+ * Fixed: For MinGW, use size_t for inet_ntop declaration and fix macro
+ checks for both MinGW and mingw-w64 (GitHub #131)
+ * Fixed: Compiler warnings (GitHub #132, GitHub #152)
* Improved: Use name UriConfig.h rather than generic config.h for the
config header file to avoid name clashes and also include it through
"UriConfig.h" with quotes rather than <UriConfig.h> so that it is found
in quote path locations (GitHub #149)
Thanks to Gaspard Petit for bringing this up!
+ * Improved: Document need for UriConfig.h in UriMemory.c (GitHub #136)
+ * Infrastructure: Add (support for) Visual Studio 17/2022 (GitHub #152)
+ * Infrastructure: Drop (support for) Visual Studio <=14/2015 (GitHub #152)
+ * Infrastructure: Update Clang from 13 to 15 (GitHub #143, GitHub #151)
+ * Infrastructure: Make MinGW with 32bit Wine on Ubuntu 20.04 possible
+ (GitHub #144, GitHub #145)
+ * Soname: 1:30:0 — see https://verbump.de/ for what these numbers do
2022-01-06 -- 0.9.6
diff --git a/THANKS b/THANKS
index 0d6cce3..3213f9b 100644
--- a/THANKS
+++ b/THANKS
@@ -7,7 +7,9 @@ Alexander Richardson
Arkadiusz Miskiewicz
Andreas Sturmlechner
Blair Sadewitz
+Brecht Sanders
Chris Hills
+Christopher Degawa
Cristian Rodriguez
Dan Pape
Daniel Chapiesky
@@ -44,6 +46,7 @@ Michelino Chionchio
Michel Zou
Mo McRoberts
myd7349
+Niclas Rosenvik
Periklis Akritidis
Philip de Nier
Radu Hociung
@@ -56,6 +59,7 @@ Robert Buchholz
Robert Kausch
Ryan Schmidt
Sandro Mani
+Scallop Ye
Schrijvers Luc
Scott Donelan
Sezai Tekin
diff --git a/include/uriparser/Uri.h b/include/uriparser/Uri.h
index ea4a913..d2c8610 100644
--- a/include/uriparser/Uri.h
+++ b/include/uriparser/Uri.h
@@ -1,4 +1,4 @@
-/* 0beb20dace01f4b2fa24c3bf9f7e8e616f621e4697260805a2b63a4d190e64c0 (0.9.6+)
+/* 4bf720e0ca97527a28e4c30f1c35b36a0b5f2697265c5ddc81080eaab4344ef2 (0.9.7+)
*
* uriparser - RFC 3986 URI parsing library
*
diff --git a/include/uriparser/UriBase.h b/include/uriparser/UriBase.h
index 63253ad..5216b1d 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 6
+#define URI_VER_RELEASE 7
#define URI_VER_SUFFIX_ANSI ""
#define URI_VER_SUFFIX_UNICODE URI_ANSI_TO_UNICODE(URI_VER_SUFFIX_ANSI)