1
0
Fork 0
mirror of https://github.com/warmcat/libwebsockets.git synced 2025-03-16 00:00:07 +01:00
libwebsockets/READMEs/release-checklist

86 lines
1.4 KiB
Text
Raw Permalink Normal View History

2016-02-13 12:02:26 +08:00
Release Checklist
-----------------
2018-11-23 11:30:56 +08:00
1) non-CI QA
2018-11-23 11:30:56 +08:00
a) valgrind test servers + client + browser
2) soname bump?
2016-02-13 12:02:26 +08:00
a) We need one if we added / changed / removed apis
2016-02-13 12:02:26 +08:00
2018-11-23 11:30:56 +08:00
- CMakeLists.txt
2016-02-13 12:02:26 +08:00
set(SOVERSION "6")
2018-11-23 11:30:56 +08:00
- scripts/libwebsockets.spec
-/%{_libdir}/libwebsockets.so.6
+/%{_libdir}/libwebsockets.so.7
3) changelog
2016-02-13 12:02:26 +08:00
a) Add next version tag header.
b) Classify as
2018-11-23 11:30:56 +08:00
- NEW
- CHANGE
- REMOVE
2016-02-13 12:02:26 +08:00
4) main version bump
2016-02-13 12:02:26 +08:00
2018-11-23 11:30:56 +08:00
- CMakeLists.txt
2016-02-13 12:02:26 +08:00
set(CPACK_PACKAGE_VERSION_MAJOR "1")
set(CPACK_PACKAGE_VERSION_MINOR "6")
set(CPACK_PACKAGE_VERSION_PATCH "0")
5) specfile
2016-02-13 12:02:26 +08:00
a) rpm version bump to match CMake one
2017-09-22 09:46:58 +08:00
scripts/libwebsockets.spec
2016-02-13 12:02:26 +08:00
Version: 1.6.0
b) Summarize changelog
2017-09-22 09:46:58 +08:00
scripts/libwebsockets.spec
2016-02-13 12:02:26 +08:00
%changelog
* Sun Jan 17 2016 Andrew Cooks <acooks@linux.com> 1.6.4-1
- Bump version to 1.6.4
- MINOR fix xyz
2018-11-23 11:30:56 +08:00
c) Use -DLWS_WITH_DISTRO_RECOMMENDED=1 then make package and adapt the .spec
to match the file list
2017-10-16 20:09:58 +08:00
6) Announce latest version on README.md
2018-11-21 06:46:23 +08:00
7) Make sure all new READMEs and public headers are in libwebsockets.dox
8) signed tag
2016-02-13 12:02:26 +08:00
git tag -s vX.Y[.Z]
2018-11-21 06:46:23 +08:00
9) git
a) push
b) final CI check, if fail delete tag, kill pushed tags, restart flow
2016-02-13 12:02:26 +08:00
2018-11-21 06:46:23 +08:00
10) website
a) update latest tag for release branch
2018-11-21 06:46:23 +08:00
11) 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.