]>
Commit | Line | Data |
---|---|---|
fc2171bd | 1 | All about wxWidgets Version Numbers |
feebe03b | 2 | =================================== |
7ca4d121 RD |
3 | |
4 | 1. Where to update the version numbers: | |
5 | ||
fc2171bd | 6 | There are several places in the wxWidgets source tree that |
157f035a | 7 | define the version number for the library. |
7ca4d121 | 8 | |
157f035a VZ |
9 | The script misc/scripts/inc_release can be used for incrementing the release |
10 | field of the version, i.e. changing 2.8.x to 2.8.x+1 but it does not take | |
11 | care of version.bkl and can't be used for changing the other version | |
12 | components, this needs to be done manually. It also doesn't update | |
13 | version.bkl file which always needs to be updated manually, follow the | |
14 | instructions there. | |
15 | ||
16 | Here is the list of files that need to be updated: | |
17 | ||
18 | build/bakefiles/version.bkl {C:R:A} [NOT UPDATED AUTOMATICALLY] | |
e9c72ade VZ |
19 | configure.in |
20 | *.spec | |
6e3837d0 VZ |
21 | build/osx/wxvers.xcconfig |
22 | docs/changes.txt | |
e9c72ade | 23 | docs/doxygen/Doxyfile_inc (PROJECT_NUMBER) |
6e3837d0 | 24 | docs/doxygen/latexdocstart.inc |
e9c72ade VZ |
25 | docs/doxygen/mainpages/manual.h (just date) |
26 | docs/msw/install.txt {major release only} | |
6e3837d0 | 27 | include/wx/version.h |
e9c72ade | 28 | include/wx/osx/config_xcode.h |
6e3837d0 VZ |
29 | samples/Info.plist |
30 | samples/docview/Info.plist | |
31 | samples/minimal/borland_ide.cpp {major release only} | |
7de9aaf0 | 32 | |
157f035a | 33 | Do not forget to rebake everything after updating version.bkl! |
7ca4d121 RD |
34 | |
35 | 2. When to update the version numbers: | |
36 | ||
157f035a VZ |
37 | Version should be updated immediately after releasing the previous version |
38 | so that the sources in the repository always correspond to the next release | |
39 | and not the past one. | |
7ca4d121 | 40 | |
157f035a | 41 | See also tn0020.txt. |
4d636bdf | 42 | |
7ca4d121 RD |
43 | |
44 | ||
45 | ||
46 | === EOF === | |
47 | ||
48 | Version: $Id$ | |
49 |