blob: 4986b471db3555efa4d28a98d5c8f6967bc38c95 (
plain)
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
53
54
|
colord Release Notes
1. Write NEWS entries for colord in the same format as usual.
git shortlog 1.4.2.. | grep -i -v trivial | grep -v Merge > NEWS.new
Version 1.4.3
~~~~~~~~~~~~~
Released: 2017-xx-xx
New Features:
Bugfixes:
Write release date to ../doc/website/download.html
2: Update translations:
ninja colord-pot
tx push --source
tx pull --all --minimum-perc=5
git add ../po/*.po
# MAKE SURE THIS IS CORRECT
export release_ver="1.4.3"
3. Generate the tarball:
git commit -a -m "Release colord ${release_ver}"
git tag -s -f -m "Release colord ${release_ver}" "${release_ver}"
ninja dist
git push --tags
git push
gpg -b -a meson-dist/colord-${release_ver}.tar.xz
4. Upload tarball:
scp meson-dist/colord-${release_ver}.tar.* hughsient@annarchy.freedesktop.org:/srv/www.freedesktop.org/www/software/colord/releases/
5. Do post release version bump in meson.build
6. Commit changes:
git commit -a -m "trivial: post release version bump"
git push
7. Sync website with ./upload.sh
8. Send an email to colord@lists.freedesktop.org
colord is a system activated daemon that maps devices to color profiles.
See https://www.freedesktop.org/software/colord/ for more details.
Tarballs can be found here:
https://www.freedesktop.org/software/colord/releases/
|