From 9b8fbe99ad14fe32c5dd5913743046d80cf347fe Mon Sep 17 00:00:00 2001 From: Nick Wellnhofer Date: Thu, 27 Mar 2025 13:17:30 +0100 Subject: [PATCH] Release v2.13.7 --- .gitlab-ci.yml | 2 +- NEWS | 9 +++++++++ configure.ac | 2 +- meson.build | 2 +- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f362b201..e49d3f2f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,7 +2,7 @@ include: - component: "gitlab.gnome.org/GNOME/citemplates/release-service@master" inputs: 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: image: registry.gitlab.gnome.org/gnome/libxml2 diff --git a/NEWS b/NEWS index 516fdbd6..f4c6a36a 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,14 @@ 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 ### Security diff --git a/configure.ac b/configure.ac index 425e68f4..c57fb3ef 100644 --- a/configure.ac +++ b/configure.ac @@ -3,7 +3,7 @@ AC_PREREQ([2.63]) m4_define([MAJOR_VERSION], 2) 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_CONFIG_SRCDIR([entities.c]) diff --git a/meson.build b/meson.build index f425f327..ee373feb 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ project( 'libxml2', 'c', - version: '2.13.6', + version: '2.13.7', license: 'MIT', default_options: ['buildtype=debug', 'warning_level=3'], meson_version: '>= 0.61',