Release v2.13.7

This commit is contained in:
Nick Wellnhofer 2025-03-27 13:17:30 +01:00
parent 58d7a3b725
commit 9b8fbe99ad
4 changed files with 12 additions and 3 deletions

View File

@ -2,7 +2,7 @@ include:
- component: "gitlab.gnome.org/GNOME/citemplates/release-service@master" - component: "gitlab.gnome.org/GNOME/citemplates/release-service@master"
inputs: inputs:
dist-job-name: "dist" dist-job-name: "dist"
tarball-artifact-path: "libxml2-dist/libxml2-2.13.6.tar.xz" tarball-artifact-path: "libxml2-dist/libxml2-2.13.7.tar.xz"
.test: .test:
image: registry.gitlab.gnome.org/gnome/libxml2 image: registry.gitlab.gnome.org/gnome/libxml2

9
NEWS
View File

@ -1,5 +1,14 @@
NEWS file for libxml2 NEWS file for libxml2
v2.13.7: Mar 27 2025
### Regressions
- tree: Fix xmlTextMerge with NULL args
- io: Fix `compressed` flag for uncompressed stdin
- parser: Fix parsing of DTD content
v2.13.6: Feb 18 2025 v2.13.6: Feb 18 2025
### Security ### Security

View File

@ -3,7 +3,7 @@ AC_PREREQ([2.63])
m4_define([MAJOR_VERSION], 2) m4_define([MAJOR_VERSION], 2)
m4_define([MINOR_VERSION], 13) m4_define([MINOR_VERSION], 13)
m4_define([MICRO_VERSION], 6) m4_define([MICRO_VERSION], 7)
AC_INIT([libxml2],[MAJOR_VERSION.MINOR_VERSION.MICRO_VERSION]) AC_INIT([libxml2],[MAJOR_VERSION.MINOR_VERSION.MICRO_VERSION])
AC_CONFIG_SRCDIR([entities.c]) AC_CONFIG_SRCDIR([entities.c])

View File

@ -1,7 +1,7 @@
project( project(
'libxml2', 'libxml2',
'c', 'c',
version: '2.13.6', version: '2.13.7',
license: 'MIT', license: 'MIT',
default_options: ['buildtype=debug', 'warning_level=3'], default_options: ['buildtype=debug', 'warning_level=3'],
meson_version: '>= 0.61', meson_version: '>= 0.61',