summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2019-07-20 19:43:37 -0700
committerWilliam Deegan <bill@baddogconsulting.com>2019-07-20 19:43:37 -0700
commitbd4188e061e735f83dd6604600b2720caf3e9ea4 (patch)
tree9ce9b72b824bdd506c2a8c0812e5ca5ce91ee764
parentaa4a3ce99508569d646852932db13471da2714b7 (diff)
downloadscons-git-bd4188e061e735f83dd6604600b2720caf3e9ea4.tar.gz
[ci skip] post release
-rwxr-xr-xReleaseConfig2
-rwxr-xr-xsrc/CHANGES.txt14
-rwxr-xr-xsrc/RELEASE.txt36
3 files changed, 19 insertions, 33 deletions
diff --git a/ReleaseConfig b/ReleaseConfig
index ca7e1cfdb..b3893bdbc 100755
--- a/ReleaseConfig
+++ b/ReleaseConfig
@@ -32,7 +32,7 @@ __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
# 'final', the patchlevel is set to the release date. This value is
# mandatory and must be present in this file.
#version_tuple = (2, 2, 0, 'final', 0)
-version_tuple = (3, 0, 6, 'alpha', 0)
+version_tuple = (3, 1, 1, 'alpha', 0)
# Python versions prior to unsupported_python_version cause a fatal error
# when that version is used. Python versions prior to deprecate_python_version
diff --git a/src/CHANGES.txt b/src/CHANGES.txt
index ce7e43abb..842767a4a 100755
--- a/src/CHANGES.txt
+++ b/src/CHANGES.txt
@@ -9,6 +9,20 @@
RELEASE VERSION/DATE TO BE FILLED IN LATER
+ From John Doe:
+
+ - Whatever John Doe did.
+
+
+RELEASE VERSION/DATE TO BE FILLED IN LATER
+
+ From John Doe:
+
+ - Whatever John Doe did.
+
+
+RELEASE VERSION/DATE TO BE FILLED IN LATER
+
From Joseph Brill:
- Code to supply correct version-specifier argument to vswhere for
VS version selection.
diff --git a/src/RELEASE.txt b/src/RELEASE.txt
index 9e4e314b7..17e698f09 100755
--- a/src/RELEASE.txt
+++ b/src/RELEASE.txt
@@ -1,4 +1,4 @@
- A new SCons checkpoint release, 3.0.6.alpha.yyyymmdd, is now available
+ A new SCons checkpoint release, 3.1.2.alpha.yyyymmdd, is now available
on the SCons download page:
https://scons.org/pages/download.html
@@ -31,9 +31,7 @@
NEW FUNCTIONALITY
- - Added variable TEMPFILEARGJOIN to specify how to join arguments written
- to temp files used when command lines exceed MAXLINELENGTH when the
- command uses $TEMPFILE{...}
+ - List new features (presumably why a checkpoint is being released)
DEPRECATED FUNCTIONALITY
@@ -41,34 +39,8 @@
CHANGED/ENHANCED EXISTING FUNCTIONALITY
- - Fix performance degradation for MD5-timestamp decider. NOTE: This changes the Decider() function arguments.
- From:
- def my_decider(dependency, target, prev_ni):
- To:
- def my_decider(dependency, target, prev_ni, repo_node):
- Where repo_node is the repository (or other) node to use to check if the node is out of date instead of dependency.
-
-
- - Enhanced --debug=explain output. Now the separate components of the dependency list are split up
- as follows:
-
- scons: rebuilding `file3' because:
- the dependency order changed:
- ->Sources
- Old:xxx New:zzz
- Old:yyy New:yyy
- Old:zzz New:xxx
- ->Depends
- ->Implicit
- Old:/usr/bin/python New:/usr/bin/python
-
-
- - Changed: Pseudo-builders now inherit OverrideEnvironments. For
- example when calling a pseudo-builder from another
- pseudo-builder the override variables passed to the first
- pseudo-builder call had to be explicitly passed on to the
- internal pseudo-builder call. Now the second pseudo-builder call
- will automatically inherit these override values.
+ - List modifications to existing features, where the previous behavior
+ wouldn't actually be considered a bug
FIXES