Skip to content

Commit

Permalink
Merge pull request #190 from uriparser/issue-189-prepare-release
Browse files Browse the repository at this point in the history
Prepare release 0.9.8 (part of #189)
  • Loading branch information
hartwork committed May 5, 2024
2 parents 005a5d4 + 1ff03c5 commit bfe94f6
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 6 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,14 @@ cmake_minimum_required(VERSION 3.5.0)

project(uriparser
VERSION
0.9.7
0.9.8
LANGUAGES
C
)

# See https://verbump.de/ for what these numbers do
set(URIPARSER_SO_CURRENT 1)
set(URIPARSER_SO_REVISION 30)
set(URIPARSER_SO_REVISION 31)
set(URIPARSER_SO_AGE 0)

include(CheckCCompilerFlag)
Expand Down
16 changes: 15 additions & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,16 @@ 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
2024-05-05 -- 0.9.8

>>>>>>>>>>>>> SECURITY >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
* Fixed: [CVE-2024-34402]
Protect against integer overflow in ComposeQueryEngine
(GitHub #183, GitHub #185)
* Fixed: [CVE-2024-34403]
Protect against integer overflow in ComposeQueryMallocExMm
(GitHub #183, GitHub #186)
>>>>>>>>>>>>> SECURITY >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
* Changed: Require CMake >=3.5.0 (GitHub #172)
* Added: CMake option URIPARSER_SHARED_LIBS=(ON|OFF) to control,
whether to produce a shared or static library for uriparser
Expand All @@ -14,6 +22,12 @@ xxxx-xx-xx -- x.x.x
using uriparser (GitHub #173, GitHub #174)
* Improved: Document supported code points for functions uriEscape(Ex)W
(GitHub #171, GitHub #175)
* Infrastructure: Update Clang from 15 to 18 (GitHub #161, GitHub #187)
* Infrastructure: Adapt to breaking changes in Clang packaging (GitHub #160)
* Infrastructure: Get sanitizer CFLAGS and LDFLAGS back in sync (GitHub #161)
* Infrastructure: Pin GitHub Actions to specific commits for security
(GitHub #165)
* Soname: 1:31:0 — see https://verbump.de/ for what these numbers do

2022-10-05 -- 0.9.7

Expand Down
3 changes: 2 additions & 1 deletion THANKS
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@ Shehzan Mohammed
SpaceIm
Valentin Haenel
Vitaly Lipatov
Yang Yu
Wouter Beek
Yan Li
Yang Yu
Zachary Lund
Zane van Iperen
2 changes: 1 addition & 1 deletion include/uriparser/Uri.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* 4bf720e0ca97527a28e4c30f1c35b36a0b5f2697265c5ddc81080eaab4344ef2 (0.9.7+)
/* e8e2c75d033ddfe256fe87c3fd5a330a6f2c9cbb376ebd83a1b3263e804c766a (0.9.8+)
*
* uriparser - RFC 3986 URI parsing library
*
Expand Down
2 changes: 1 addition & 1 deletion include/uriparser/UriBase.h
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
/* Version */
#define URI_VER_MAJOR 0
#define URI_VER_MINOR 9
#define URI_VER_RELEASE 7
#define URI_VER_RELEASE 8
#define URI_VER_SUFFIX_ANSI ""
#define URI_VER_SUFFIX_UNICODE URI_ANSI_TO_UNICODE(URI_VER_SUFFIX_ANSI)

Expand Down

0 comments on commit bfe94f6

Please sign in to comment.