Next release
============

Features
--------

- It is now possible to write parameterized tests using the 
  ``models.ParameterTest`` base class instead of ``models.Test``.

Bug Fixes
---------

- The ``run_configuration`` method of the ``ScenarioConfigurationRunner`` 
  now also ignores OnMethodExpectedStateError.

Internal
--------

- Removed dependency on AOPython library

Backwards Incompatibilities
---------------------------

- Comprehensive verification on logical models is now done explicitly
  with a decorator called ``verify``::

    from funittest import interpreter
    from funittest import models
    from funittest import verify
    class Content(models.Logical):
        @verify
        def edit(self, content):
            interpreter.annotate("Edit content")
   
  Just add this decorator to all of your logical methods.

- You need to mark your test ``ITestUploadFiles``, so that chrome mode is used. 
  No more auto-detection from the schema is done, and no deprecation warning 
  is issued any more.

1.0b1 (2008-01-04)
==================

Initial release.
