diff options
-rw-r--r-- | HOWTO/release.txt | 4 | ||||
-rw-r--r-- | src/setupTests.py | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/HOWTO/release.txt b/HOWTO/release.txt index 83e5494..823addf 100644 --- a/HOWTO/release.txt +++ b/HOWTO/release.txt @@ -359,8 +359,8 @@ Things to do to release a new version of SCons: # Change the hard-coded package version numbers # in the following files. - aecp README SConstruct debian/changelog rpm/scons.spec.in - vi README SConstruct debian/changelog rpm/scons.spec.in + aecp README SConstruct debian/changelog rpm/scons.spec.in src/setupTests.py + vi README SConstruct debian/changelog rpm/scons.spec.in src/setupTests.py # Optionally, do the same in the following: [optional] aecp HOWTO/change.txt diff --git a/src/setupTests.py b/src/setupTests.py index 6c151eb..78fd387 100644 --- a/src/setupTests.py +++ b/src/setupTests.py @@ -50,7 +50,7 @@ except KeyError: try: version = os.environ['SCONS_VERSION'] except KeyError: - version = '__VERSION__' + version = '0.12' scons_version = 'scons-%s' % version |