diff --git a/.github/workflows/build-branch.yml b/.github/workflows/build-branch.yml
index f91129728..177e1090c 100644
--- a/.github/workflows/build-branch.yml
+++ b/.github/workflows/build-branch.yml
@@ -178,7 +178,7 @@ jobs:
- name: Restore previous version(s) of the guide
if: matrix.os == 'ubuntu-20.04'
run: |
- rsync -ar /tmp/guide/ build/website/guide/
+ rsync -ar --exclude index.html /tmp/guide/ build/website/guide/
if [ ! -f build/website/guide/index.html ]; then \
mv /tmp/guide/index.html build/website/guide/; \
fi
diff --git a/properties.gradle b/properties.gradle
index ce7181554..739787324 100644
--- a/properties.gradle
+++ b/properties.gradle
@@ -2,8 +2,8 @@
ext {
xslTNGtitle = 'DocBook xslTNG'
xslTNGbaseName = 'docbook-xslTNG'
- xslTNGversion = '2.3.1'
- guideVersion = '2.3.1'
+ xslTNGversion = '2.4.0'
+ guideVersion = '2.4.0'
guidePrerelease = false
docbookVersion = '5.2'
diff --git a/src/guide/xml/changelog.xml b/src/guide/xml/changelog.xml
index 0b836fc8b..9472174b4 100644
--- a/src/guide/xml/changelog.xml
+++ b/src/guide/xml/changelog.xml
@@ -10,10 +10,10 @@ be of interest to users of the stylesheets. See the commits and pull requests on
the repository for
finer detail.
-
+
- Changes in version 2.3.1
- 2.3.1
+ Changes in version 2.4.0
+ 2.4.02024-10-24
@@ -34,9 +34,27 @@ I don’t imagine that was intentional, but if you use task elements
titles, make sure you’re getting the results you expect!
-It’s also possible that it will have consequences in customization
+It’s also possible that this will have consequences in customization
layers, but I don’t think that’s the case.
+
+Added a wrappar around cmdsynopsis;
+fixed #538.
+This makes customization of command synopses more practical in CSS.
+
+
+
+In the DocBook Python script, pass the Saxon return code back to the shell;
+fixed #535.
+Thanks, Frank!
+
+
+
+Fixed the CI build issue that was preventing the link to the most recent
+version of the guide from updating correctly;
+fixed #534.
+
+