forked from fwupd/fwupd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
RELEASE
52 lines (34 loc) · 1.05 KB
/
RELEASE
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
fwupd Release Notes
1. Write NEWS entries for fwupd in the same format as usual.
git shortlog 1.1.0.. | grep -i -v trivial | grep -v Merge > NEWS.new
Version 1.1.1
~~~~~~~~~~~~~
Released: 2018-xx-xx
New Features:
Bugfixes:
Update translations:
ninja-build fwupd-pot
tx push --source
tx pull --all --force --minimum-perc=5
for f in ../po/*.po; do
msgattrib --no-location --translated --no-wrap --sort-output $f --output-file=$f
done
git add ../po/*.po
2. Commit changes to git:
# MAKE SURE THESE ARE CORRECT
export release_ver="1.1.1"
git commit -a -m "Release fwupd ${release_ver}"
git tag -s -f -m "Release fwupd ${release_ver}" "${release_ver}"
<wait>
git push --tags
git push
3. Generate the tarball:
ninja dist
3a. Generate the additon verification metadata
gpg -b -a meson-dist/fwupd-${release_ver}.tar.xz
4. Upload tarball:
scp meson-dist/fwupd-${release_ver}.tar.* [email protected]:~/public_html/releases
5. Do post release version bump in meson.build
6. Commit changes:
git commit -a -m "trivial: post release version bump"
git push