summaryrefslogtreecommitdiffstats
path: root/src/CHANGES.txt
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2003-09-15 14:01:28 (GMT)
committerSteven Knight <knight@baldmt.com>2003-09-15 14:01:28 (GMT)
commitc41dc6daf69787a9f4d4984aec727af705445e46 (patch)
tree24ce63856445f3ab2b29f4593bd0cb886cd4f4ba /src/CHANGES.txt
parentf36ff530132ecfe7941f80d2d6e5f03f75decf41 (diff)
downloadSCons-c41dc6daf69787a9f4d4984aec727af705445e46.zip
SCons-c41dc6daf69787a9f4d4984aec727af705445e46.tar.gz
SCons-c41dc6daf69787a9f4d4984aec727af705445e46.tar.bz2
Turn more global functions into Environment methods. (clone of 0.92.C121)
Diffstat (limited to 'src/CHANGES.txt')
-rw-r--r--src/CHANGES.txt11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/CHANGES.txt b/src/CHANGES.txt
index 9961c47..72491cb 100644
--- a/src/CHANGES.txt
+++ b/src/CHANGES.txt
@@ -45,8 +45,10 @@ RELEASE X.XX - XXX
- Add Environment-method versions of the following global functions:
AddPreAction(), AddPostAction(), BuildDir(), CacheDir(), Clean(),
- Default(), FindFile(), GetBuildPath(), Local(), Repository(),
- SConsignFile(), SourceSignatures(), TargetSignatures().
+ Default(), EnsurePythonVersion(), EnsureSConsVersion(), Exit(),
+ Export(), FindFile(), GetBuildPath(), GetOption(), Help(),
+ Import(), Local(), Repository(), SConsignFile(), SetOption(),
+ SourceSignatures(), TargetSignatures().
- Add the following global functions that correspond to the same-named
Environment methods: AlwaysBuild(), Command(), Depends(), Ignore(),
@@ -55,6 +57,11 @@ RELEASE X.XX - XXX
- Rearrange the man page to show construction environment methods and
global functions in the same list, and to explain the difference.
+ - Rename the Environment.Environment class to Enviroment.Base.
+ Allow the wrapping interface to extend an Environment by using its own
+ subclass of Environment.Base and setting a new Environment.Environment
+ variable as the calling entry point.
+
From Bram Moolenaar:
- Split the non-SCons-specific functionality from SConf.py to a new,