forked from outis/lib_mysqludf_str
-
Notifications
You must be signed in to change notification settings - Fork 10
/
RELEASE_CHECKLIST
80 lines (50 loc) · 2.55 KB
/
RELEASE_CHECKLIST
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
This is a checklist of the steps to follow when preparing a new release.
* git fetch origin
git merge origin/master
* Update ChangeLog.
* Update README.md.
* Update the package version that is passed to AC_INIT in configure.ac.
* Update the macro def of PACKAGE_VERSION in config.h (for Windows/Visual Studio
users).
* Update the version number that is listed twice in README.win32.txt and README.win64.txt
* Make sure that there are no uncommitted changes in the working tree. Push
all commits to GitHub.
* Update RELEASE_CHECKLIST if necessary.
ON WINDOWS
================================================================================
This assumes that Windows is 64-bit.
* Update MySQL to the latest GA release.
* Build Debug and Release binaries (Win32 and x64 platforms) using the
Visual Studio solution.
* Use Dependency Walker to inspect the DLL dependencies of the Release/x64 binary.
Make sure that there are no unusual dependencies.
* Install the newly-built DLL to the MySQL plugin directory.
* Source uninstalldb.sql, then installdb.win.sql, to make sure that there are no
obvious problems.
* Make sure that the new version is listed in the result of:
SELECT lib_mysqludf_str_info() FROM DUAL;
* Commit any changes in the working tree. Push all commits to GitHub.
* Prepare a ZIP of the Release/x64 build. The ZIP should contain a copy of
COPYING, installdb.win.sql, lib_mysqludf_str.dll, README.win_x64.txt, and
uninstalldb.sql. The name should be "lib_mysqludf_str-$(PACKAGE_VERSION)_x64".
* Prepare a ZIP of the Release/Win32 build. The ZIP should contain a copy of
COPYING, installdb.win.sql, lib_mysqludf_str.dll, README.win_x86.txt, and
uninstalldb.sql. The name should be "lib_mysqludf_str-$(PACKAGE_VERSION)_x86".
* Sign the two ZIP archives with GPG.
* Upload the two ZIP archives and signatures to www.mysqludf.org/lib_mysqludf_str/
ON LINUX
================================================================================
* git fetch origin
git merge origin/master
* make clean
autoreconf
./configure --prefix /usr/local/stow/lib_mysqludf_str-HEAD --disable-static
make
sudo make install
* Examine the files in /usr/local/stow/lib_mysqludf_str-HEAD
* ldd /usr/local/stow/lib_mysqludf_str-HEAD/lib/lib_mysqludf_str.so
* Commit any changes in the working tree. Push all commits to GitHub.
* Create a signed tag named "v$(PACKAGE_VERSION)":
git tag -s v$(PACKAGE_VERSION)
Message: "Version $(PACKAGE_VERSION)"
* git push --tags origin