File: release-checklist

package info (click to toggle)
libwebsockets 4.3.5-3
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 31,404 kB
  • sloc: ansic: 194,409; javascript: 1,550; sh: 1,387; cpp: 505; java: 461; perl: 405; xml: 118; makefile: 76; awk: 5
file content (65 lines) | stat: -rw-r--r-- 1,100 bytes parent folder | download | duplicates (3)
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
55
56
57
58
59
60
61
62
63
64
65
Release Checklist
-----------------

1) non-CI QA
 
 a) valgrind test servers + client + browser

2) soname bump?

 a) We need one if we added / changed / removed apis

  - CMakeLists.txt

   set(SOVERSION "6")

  - scripts/libwebsockets.spec

  -/%{_libdir}/libwebsockets.so.6
  +/%{_libdir}/libwebsockets.so.7

3) changelog

 a) Add next version tag header.

 b) Classify as

    - NEW
    - CHANGE
    - REMOVE

4) main version bump

  - CMakeLists.txt

   set(CPACK_PACKAGE_VERSION_MAJOR "1")
   set(CPACK_PACKAGE_VERSION_MINOR "6")
   set(CPACK_PACKAGE_VERSION_PATCH "0")

5) Announce latest version on README.md

6) Make sure all new READMEs and public headers are in libwebsockets.dox

7) signed tag

  git tag -s vX.Y[.Z]

8) git

 a) push
 
 b) final CI check, if fail delete tag, kill pushed tags, restart flow

9) website

 a) update latest tag for release branch

10) post-relase version bump

Bump the PATCH part of the version to 99

-set(CPACK_PACKAGE_VERSION_PATCH "0")
+set(CPACK_PACKAGE_VERSION_PATCH "99")

to reflect it's newer than any stable release but not a new version yet.