notes updates and dev version bump

This commit is contained in:
Mark Harrah 2010-04-06 22:02:10 -04:00
parent 314f86d559
commit 26bd11e50c
2 changed files with 14 additions and 12 deletions

View File

@ -2,7 +2,7 @@
#Tue Mar 23 21:01:04 EDT 2010 #Tue Mar 23 21:01:04 EDT 2010
project.organization=org.scala-tools.sbt project.organization=org.scala-tools.sbt
project.name=xsbt project.name=xsbt
sbt.version=0.7.2 sbt.version=0.7.3
project.version=0.7.3 project.version=0.7.4-SNAPSHOT
def.scala.version=2.7.7 def.scala.version=2.7.7
build.scala.versions=2.7.7 build.scala.versions=2.7.7

View File

@ -1,8 +1,9 @@
### Fixes ### Fixes
* Fixed issue with scala.library.jar not being on javac's classpath * Fixed issue with scala.library.jar not being on javac's classpath.
* Fixed buffered logging for parallel execution * Fixed buffered logging for parallel execution.
* Fixed test-* tab completion being permanently set on first completion * Fixed test-* tab completion being permanently set on first completion.
* Works with Scala 2.8 trunk again. * Works with Scala 2.8 trunk again (including the latest 2.8.0-SNAPSHOT).
* The latest launcher should fix issues with retrieving Scala 2.8.0-SNAPSHOT versions.
* [sxr sources](http://simple-build-tool.googlecode.com/svn/artifacts/latest/sxr/index.html) * [sxr sources](http://simple-build-tool.googlecode.com/svn/artifacts/latest/sxr/index.html)
* Maven local repository excluded when the Scala version is a snapshot. This should fix issues with out of date Scala snapshots. * Maven local repository excluded when the Scala version is a snapshot. This should fix issues with out of date Scala snapshots.
@ -16,13 +17,14 @@
### New Feature ### New Feature
* Java tests + Annotation detection * Java tests + Annotation detection
* Test frameworks can now specify annotation fingerprints. Specify the names of annotations and sbt discovers classes with the annotations on it or one of its methods. Use version 0.5 of the [test-interface](http://github.com/harrah/test-interface). * Test frameworks can now specify annotation fingerprints. Specify the names of annotations and sbt discovers classes with the annotations on it or one of its methods. Use version 0.5 of the [test-interface](http://github.com/harrah/test-interface).
* Detect subclasses and annotations in Java sources (really, their class files) * Detect subclasses and annotations in Java sources (really, their class files).
### Compatibility ### Compatibility
This section is important for users that work with the `TestDefinition`, `AnalysisCallback`, or `CompileConfiguration` classes in sbt. This section is important for users that work with the `TestDefinition`, `AnalysisCallback`, or `CompileConfiguration` classes in sbt.
* Discovered is new root of hierarchy representing discovered subclasses + annotations. `TestDefinition` no longer fulfills this role.
* `TestDefinition` is modified to be name+`Fingerprint` and represents a runnable test. It need not be `Discovered` and could be file-based in the future, for example. * Discovered is new root of hierarchy representing discovered subclasses + annotations. `TestDefinition` no longer fulfills this role.
* Replaced testDefinitionClassNames method with `fingerprints` in `CompileConfiguration`. * `TestDefinition` is modified to be name+`Fingerprint` and represents a runnable test. It need not be `Discovered` and could be file-based in the future, for example.
* Added foundAnnotation to `AnalysisCallback` * Replaced testDefinitionClassNames method with `fingerprints` in `CompileConfiguration`.
* Added `Runner2`, `Fingerprint`, `AnnotationFingerprint`, and `SubclassFingerprint` to the [test-interface](http://github.com/harrah/test-interface). Existing test frameworks should still work. Implement `Runner2` to use fingerprints other than `SubclassFingerprint`. * Added foundAnnotation to `AnalysisCallback`.
* Added `Runner2`, `Fingerprint`, `AnnotationFingerprint`, and `SubclassFingerprint` to the [test-interface](http://github.com/harrah/test-interface). Existing test frameworks should still work. Implement `Runner2` to use fingerprints other than `SubclassFingerprint`.