summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Moody <dmoody256@gmail.com>2017-10-26 02:11:57 (GMT)
committerDaniel Moody <dmoody256@gmail.com>2017-10-26 02:11:57 (GMT)
commitd6359bea1d2b3bb45a598420d5a19cb37ef425e7 (patch)
treee8bd957cf84b470dd1b3d59f55e67993c3d69fd0
parent5c33147bb660701ed4d8dc5af09bea08a0d04e8b (diff)
downloadSCons-d6359bea1d2b3bb45a598420d5a19cb37ef425e7.zip
SCons-d6359bea1d2b3bb45a598420d5a19cb37ef425e7.tar.gz
SCons-d6359bea1d2b3bb45a598420d5a19cb37ef425e7.tar.bz2
added my updates to CHANGES.txt
-rw-r--r--src/CHANGES.txt13
1 files changed, 12 insertions, 1 deletions
diff --git a/src/CHANGES.txt b/src/CHANGES.txt
index 5df9c4f..0b1cdef 100644
--- a/src/CHANGES.txt
+++ b/src/CHANGES.txt
@@ -12,7 +12,18 @@ RELEASE VERSION/DATE TO BE FILLED IN LATER
- Whatever John Doe did.
From Daniel Moody:
- - Updated the Jar Builder tool in Tool/__init.py so that is doesn't force class files as
+ - Added Jar method and changed jar build to be more specific. Jar method will take in
+ directories or classes as source. Added more tests to JAR to ensure the jar was
+ packaged with the correct compiled class files.
+ - Added a No result test case to handle bug which seems unrelated to java in the
+ swig-dependencies.py test, more info here: http://scons.tigris.org/issues/show_bug.cgi?id=2907
+ - Added a travis script to test on ubuntu trusty now that the project is on github
+ so that Continuus Integration tests can be run automatically. It tests most case and considers
+ no result a pass as well. Improving this script can install more dependincies allowing for more
+ tests to be run.
+
+ From Daniel Moody:
+ - Updated the Jar Builder tool in Tool/__init__.py so that is doesn't force class files as
sources, allowing directories to be passed, which was causing test/Java/JAR.py to fail.
From William Deegan: