File: RELEASE

package info (click to toggle)
libxmlb 0.3.24-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,052 kB
  • sloc: ansic: 12,692; python: 569; xml: 83; sh: 81; makefile: 2
file content (32 lines) | stat: -rw-r--r-- 726 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
libxmlb Release Notes

1. Write NEWS entries for libxmlb in the same format as usual.

git shortlog 0.3.23.. | grep -i -v trivial | grep -v Merge > NEWS.new

Version 0.3.24
~~~~~~~~~~~~~~
Released: 2025-xx-xx

New Features:
Bugfixes:


Commit changes to git:

# MAKE SURE THESE ARE CORRECT
export release_ver="0.3.24"

git commit -a -m "Release libxmlb ${release_ver}" --no-verify
git tag -s -f -m "Release libxmlb ${release_ver}" "${release_ver}"
ninja dist
git push --tags
git push
gpg -b -a meson-dist/libxmlb-${release_ver}.tar.xz

Upload release artifacts via https://github.com/hughsie/libxmlb/tags

Do post release version bump in meson.build

git commit -a -m "trivial: post release version bump" --no-verify
git push