From fcdaa107fb5d295972855ca5e362e40dd37a17e8 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Thu, 9 Jul 2026 15:09:57 +0200 Subject: [PATCH] Create header for 3.3.4 in the change log Restore instructions for updating it removed as part of preparation for 3.3.3. --- docs/changes.txt | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/docs/changes.txt b/docs/changes.txt index 051ebebc59..0573257418 100644 --- a/docs/changes.txt +++ b/docs/changes.txt @@ -255,6 +255,33 @@ Changes in behaviour which may result in build errors make sense and was removed, please use the other overload instead if needed. +3.3.4: (released 2026-??-??) +---------------------------- + +NOTE: In addition to the note below, also incorporate (either by + copy or by reference) all the changes in the 3.2 branch (i.e. + everything in this file after 3.2.0 in that branch). + +NOTE: This file is updated only before the release, please use + $ git log --notes=changelog --format='%N' v3.3.2..|grep . + to see all the change log entries since the last release. + + To update the notes, fetch them first: + $ git fetch origin refs/notes/changelog:refs/notes/changelog + then use the following command to update them locally + $ git notes --ref=changelog add -m 'wxPort: description.' + and finally push it to the server. + $ git push origin refs/notes/changelog:refs/notes/changelog + + If this fails due to a conflict because you had forgotten to + run git-fetch first, you can always reset your local notes + (LOSING YOUR CHANGES TO THEM, so make sure to make a copy) + $ git fetch origin refs/notes/changelog + $ git update-ref refs/notes/changelog FETCH_HEAD + + and then redo "git-notes add" and git-push. + + 3.3.3: (released 2026-07-07) ----------------------------