Skip to content

Commit

Permalink
Add ChangeLog detail for commit 5790662 and advance version in HEAD t…
Browse files Browse the repository at this point in the history
…o 10.45-DEV.
  • Loading branch information
PhilipHazel committed Jun 9, 2024
1 parent 5790662 commit bb8e7e0
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
12 changes: 12 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,18 @@ Change Log for PCRE2
Before the move to GitHub, this was the only record of changes to PCRE2. Now
there is also the log of commit messages.

Version 10.45 xx-xxx-2024
-------------------------

1. Change 6 of 10.44 broke 32-bit compiles because pcre2test's reporting of
memory size was changed to the entire compiled data block, instead of just the
pattern and tables data, so as to align with the new length restriction.
Because the block's header contains pointers, this meant the pcre2test output
was different in 32-bit mode. A patch by Carlo reverts to the preevious state
and makes sure that any limit set by pcre2_set_max_pattern_compiled_length()
also avoids the internal struct overhead.


Version 10.44 07-June-2024
--------------------------

Expand Down
6 changes: 3 additions & 3 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ dnl The PCRE2_PRERELEASE feature is for identifying release candidates. It might
dnl be defined as -RC2, for example. For real releases, it should be empty.

m4_define(pcre2_major, [10])
m4_define(pcre2_minor, [44])
m4_define(pcre2_prerelease, [])
m4_define(pcre2_date, [2024-06-07])
m4_define(pcre2_minor, [45])
m4_define(pcre2_prerelease, [-DEV])
m4_define(pcre2_date, [2024-06-09])

# Libtool shared library interface versions (current:revision:age)
m4_define(libpcre2_8_version, [13:0:13])
Expand Down

0 comments on commit bb8e7e0

Please sign in to comment.