Update PR #3384's CHANGE.txt entry to include a note about the changed behavior
[scons.git] / ReleaseConfig
blobb58aad7f4b025253ccbd696d83cb0404c52c5c1d
2 # __COPYRIGHT__
4 # Permission is hereby granted, free of charge, to any person obtaining
5 # a copy of this software and associated documentation files (the
6 # "Software"), to deal in the Software without restriction, including
7 # without limitation the rights to use, copy, modify, merge, publish,
8 # distribute, sublicense, and/or sell copies of the Software, and to
9 # permit persons to whom the Software is furnished to do so, subject to
10 # the following conditions:
12 # The above copyright notice and this permission notice shall be included
13 # in all copies or substantial portions of the Software.
15 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
16 # KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
17 # WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18 # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
19 # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
20 # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
21 # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23 __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
26 # After updating this file, run bin/update-release-info.py <MODE>.
29 # The version tuple that will be used for the release.  The fields are
30 # (major, minor, micro, type, patchlevel).  The release level is one of
31 # 'alpha', 'beta', 'candidate', or 'final'.  If the release type is not
32 # 'final', the patchlevel is set to the release date.  This value is
33 # mandatory and must be present in this file.
34 #version_tuple = (2, 2, 0, 'final', 0)
35 version_tuple = (4, 0, 2, 'a', 0)
37 # Python versions prior to unsupported_python_version cause a fatal error
38 # when that version is used.  Python versions prior to deprecate_python_version
39 # cause a warning to be issued (assuming it's not disabled).  These values are
40 # mandatory and must be present in the configuration file.
41 unsupported_python_version = (3, 4, 0)
42 deprecated_python_version = (3, 4, 0)
44 # If release_date is (yyyy, mm, dd, hh, mm, ss), that is used as the release
45 # date and time.  If release_date is (yyyy, mm, dd), it is used for the
46 # release date and the current time is used for the release timetime.  If
47 # release_date is not given, the current date and time are used.
48 #release_date = (2012, 12, 21)
50 # If month_year is not given, the release month and year are used.
51 #month_year = 'December 2012'
53 # If copyright years is not given, the release year is used as the end.
54 copyright_years = '2001 - 2020'
56 # Local Variables:
57 # tab-width:4
58 # indent-tabs-mode:nil
59 # End:
60 # vim: set expandtab tabstop=4 shiftwidth=4: