blob: caae1147c5e0ad22a8e8732b81bcab7db0654c0a (
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
|
- Create X.Y branch if first bugfix release
git branch X.Y X.Y.0
git checkout X.Y
- See if makes sense to cherry-pick other fixes/changes
- Update NEWS if anything major, commit
- Update version in manifest, cli.sh, commit:
git ci -a -m "Bump version to X.Y.N"
- Regenerate odb.sh, cli.sh
- Dist to queue:
etc/stage-pkg -q -d -c <group> <proj>
- @@ TODO: Test queue.
- @@ TODO: Might need to rebuild build2-toolchain.
- Move package from queue to the appropriate repository, normally
replacing the old package.
- Regenerate the repository and publish (remove -p if also publishing
build2-toolchain):
cd cppget.org
git -C repository add .
git -C repository status
./update
cd ..
etc/publish -p
- Tag the bugfix release:
git tag -a X.Y.Z -m "Tag version X.Y.Z"
- Commit cppget.org/repository/ (see history for procedure)
- Write and send announcements, remember to include checksum.
- Switch back to master and regenerate cli.sh/odb.sh
|