Skip to content

Commit 60d3056

Browse files
committed
Release v2.13.4
1 parent 7c4fef2 commit 60d3056

File tree

3 files changed

+29
-2
lines changed

3 files changed

+29
-2
lines changed

NEWS

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,32 @@
11
NEWS file for libxml2
22

3+
v2.13.4: Sep 18 2024
4+
5+
### Regressions
6+
7+
- parser: Make unsupported encodings an error in declarations
8+
- io: don't set the executable bit when creating files (triallax)
9+
- xmlcatalog: Improved fix for #699
10+
- Revert "catalog: Fetch XML catalog before dumping"
11+
- io: Add missing calls to xmlInitParser
12+
- tree: Restore return value of xmlNodeListGetString with NULL list
13+
- parser: Fix error handling after reaching limit
14+
- parser: Make xmlParseChunk return an error if parser was stopped
15+
16+
### Bug fixes
17+
18+
- python: Fix SAX driver with character streams
19+
20+
### Improvements
21+
22+
- xpath: Make recursion check work with xmlXPathCompile
23+
- parser: Report at least one fatal error
24+
25+
### Portability
26+
27+
- include: Check whether _MSC_VER is defined
28+
29+
330
v2.13.3: Jul 24 2024
431

532
### Security

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ AC_PREREQ([2.63])
33

44
m4_define([MAJOR_VERSION], 2)
55
m4_define([MINOR_VERSION], 13)
6-
m4_define([MICRO_VERSION], 3)
6+
m4_define([MICRO_VERSION], 4)
77

88
AC_INIT([libxml2],[MAJOR_VERSION.MINOR_VERSION.MICRO_VERSION])
99
AC_CONFIG_SRCDIR([entities.c])

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
project(
22
'libxml2',
33
'c',
4-
version: '2.13.3',
4+
version: '2.13.4',
55
license: 'MIT',
66
default_options: ['buildtype=debug', 'warning_level=3'],
77
meson_version: '>= 0.61',

0 commit comments

Comments
 (0)