Skip to content

Commit de918d4

Browse files
committed
Release v2.13.5
1 parent a3afc31 commit de918d4

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

NEWS

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

3+
v2.13.5: Nov 12 2024
4+
5+
### Regressions
6+
7+
- xmlIO: Fix reading from non-regular files like pipes (Nick Wellnhofer)
8+
- xmlreader: Fix return value of xmlTextReaderReadString (Nick Wellnhofer)
9+
- parser: Fix loading of parameter entities in external DTDs (Nick Wellnhofer)
10+
- parser: Fix downstream code that swaps DTDs (Nick Wellnhofer)
11+
- parser: Fix detection of duplicate attributes (Nick Wellnhofer)
12+
- string: Fix va_copy fallback (Nick Wellnhofer)
13+
14+
### Bug fixes
15+
16+
- xpath: Fix parsing of non-ASCII names (Nick Wellnhofer)
17+
18+
319
v2.13.4: Sep 18 2024
420

521
### Regressions

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], 4)
6+
m4_define([MICRO_VERSION], 5)
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.4',
4+
version: '2.13.5',
55
license: 'MIT',
66
default_options: ['buildtype=debug', 'warning_level=3'],
77
meson_version: '>= 0.61',

0 commit comments

Comments
 (0)