summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xREADME.rst14
-rw-r--r--SConstruct4
-rwxr-xr-xsrc/Announce.txt2
-rwxr-xr-xsrc/CHANGES.txt2
-rw-r--r--testing/framework/TestSCons.py2
5 files changed, 12 insertions, 12 deletions
diff --git a/README.rst b/README.rst
index ce6f68caf..386bd65f9 100755
--- a/README.rst
+++ b/README.rst
@@ -499,13 +499,13 @@ about `Executing SCons Without Installing`_)::
Depending on the utilities installed on your system, any or all of the
following packages will be built::
- build/dist/scons-3.0.4.tar.gz
- build/dist/scons-3.0.4.zip
- build/dist/scons-doc-3.0.4.tar.gz
- build/dist/scons-local-3.0.4.tar.gz
- build/dist/scons-local-3.0.4.zip
- build/dist/scons-src-3.0.4.tar.gz
- build/dist/scons-src-3.0.4.zip
+ build/dist/scons-3.0.5.alpha.yyyymmdd.tar.gz
+ build/dist/scons-3.0.5.alpha.yyyymmdd.zip
+ build/dist/scons-doc-3.0.5.alpha.yyyymmdd.tar.gz
+ build/dist/scons-local-3.0.5.alpha.yyyymmdd.tar.gz
+ build/dist/scons-local-3.0.5.alpha.yyyymmdd.zip
+ build/dist/scons-src-3.0.5.alpha.yyyymmdd.tar.gz
+ build/dist/scons-src-3.0.5.alpha.yyyymmdd.zip
The SConstruct file is supposed to be smart enough to avoid trying to build
packages for which you don't have the proper utilities installed. For
diff --git a/SConstruct b/SConstruct
index 5ac56921e..a832cdc64 100644
--- a/SConstruct
+++ b/SConstruct
@@ -8,7 +8,7 @@ from __future__ import print_function
copyright_years = '2001 - 2019'
# This gets inserted into the man pages to reflect the month of release.
-month_year = 'January 2019'
+month_year = 'MONTH YEAR'
#
# __COPYRIGHT__
@@ -49,7 +49,7 @@ import textwrap
import bootstrap
project = 'scons'
-default_version = '3.0.4'
+default_version = '3.0.5.alpha.yyyymmdd'
copyright = "Copyright (c) %s The SCons Foundation" % copyright_years
SConsignFile()
diff --git a/src/Announce.txt b/src/Announce.txt
index 7eb57ae17..d181de543 100755
--- a/src/Announce.txt
+++ b/src/Announce.txt
@@ -18,7 +18,7 @@ So that everyone using SCons can help each other learn how to use it more
effectively, please go to http://scons.org/lists.html#users to sign up for
the scons-users mailing list.
-RELEASE VERSION/DATE TO BE FILLED IN LATER
+RELEASE 3.0.5.alpha.yyyymmdd - NEW DATE WILL BE INSERTED HERE
Please consult the RELEASE.txt file for a summary of changes since the last
release and consult the CHANGES.txt file for complete a list of changes
diff --git a/src/CHANGES.txt b/src/CHANGES.txt
index 4d24611a4..7d8e8d46d 100755
--- a/src/CHANGES.txt
+++ b/src/CHANGES.txt
@@ -5,7 +5,7 @@
Change Log
-RELEASE VERSION/DATE TO BE FILLED IN LATER
+RELEASE 3.0.5.alpha.yyyymmdd - NEW DATE WILL BE INSERTED HERE
From William Deegan:
diff --git a/testing/framework/TestSCons.py b/testing/framework/TestSCons.py
index 57b300d15..ad197d70f 100644
--- a/testing/framework/TestSCons.py
+++ b/testing/framework/TestSCons.py
@@ -35,7 +35,7 @@ from TestCmd import PIPE
# here provides some independent verification that what we packaged
# conforms to what we expect.
-default_version = '3.0.4'
+default_version = '3.0.5.alpha.yyyymmdd'
python_version_unsupported = (2, 6, 0)
python_version_deprecated = (2, 7, 0)