=======================
 pyutilib.th CHANGELOG
=======================

-------------------------------------------------------------------------------
 Version 4.7
-------------------------------------------------------------------------------

- Under development.

-------------------------------------------------------------------------------
 Version 4.6
-------------------------------------------------------------------------------

- Changed tests to eliminate the use of deprecated 'fail*' syntax.

- Changes to allow debugging logs to be optimized out.

-------------------------------------------------------------------------------
 Version 4.5
-------------------------------------------------------------------------------

- Added logic to allow for comparisons with ZIP or GZIP compressed
  files.

- Eliminating the use of filecmp.cmp, which doesn't do as careful comparison
  of the os.stat() information.

- Throw an exception if ZIP files are used for baseline files in Python 2.5 or
  earlier.  The zip utility in Python did not have handy utility functions
  in those earlier version.

- Added a NOSE plugin that records test data in a file.

- Added functionality to record test data from a unittest test.

- Adding support to specify the format of the test data table.  If HUDSON
  environment variables are present, then these tables prepend this info
  to the test data lines.

- Added the 'tags' attribute to categorized tests.  This allows NOSE to 
  control the execution of these tests with the 'attr' plugin.

-------------------------------------------------------------------------------
 Version 4.4
-------------------------------------------------------------------------------

- Adding 'cwd' option to add_baseline_test.

- Adding a 'cmdfile' option, which generates a command-file that replicates
the execution of the command used in a baseline test.

-------------------------------------------------------------------------------
 Version 4.3.1
-------------------------------------------------------------------------------

- Resolved a portability issue that caused problems in Python 2.7

-------------------------------------------------------------------------------
 Version 4.3
-------------------------------------------------------------------------------

- Extending filtering semantics in baseline tests.  Perform filtering
  before and after 'ignored' characters are removed.

-------------------------------------------------------------------------------
 Version 4.2.1
-------------------------------------------------------------------------------

- Adding dependency on pyutilib.misc for installation.

-------------------------------------------------------------------------------
 Version 4.2
-------------------------------------------------------------------------------

- Added a 'category' decorator that can be used to filter tests based on
  specified categories.  The PYUTILIB_UNITTEST_CATEGORIES environmental
  variable is used to specify categories of tests that will be run.  If
  this environment is not specified, then this decorator is ignored.

- Adding logic to perform tests with module imports.

- Adding documentation strings to describe automatically generated
  tests in verbose output mode.

-------------------------------------------------------------------------------
 Version 4.1
-------------------------------------------------------------------------------

- Adding suite name in the specification of the
  test function that is added. This is used to index function options
  (in pyutilib.autotest).  NOTE: this is an optional argument, but in
  practice I think it's a good idea to use this.

- Adding a dummy nottest function here (when 'nose' is not
  available).

-------------------------------------------------------------------------------
 Version 4.0
-------------------------------------------------------------------------------

- Added explicit support for options management when setting function tests.

- Allow function tests to return None, which indicates that the test has
  passed.

- Decorating the methods used to add tests dynamically as classmethod()
  rather than staticmethod(). This allows the class object to be passed
  into the method, which is used to specify the class object that is
  augmented.  Previously, there was a bug where the TestCase? class
  was augmented, rather than the subclass of TestCase? that the user
  has defined.

- Extending the API of the methods used to add tests dynamically. Now,
  the TestCase instance is passed in as the first argument.

-------------------------------------------------------------------------------
 Version 3.1.1
-------------------------------------------------------------------------------

- Generalized the behavior of the filter operation when doing baseline
  comparisons. Now, either the baseline or the output file will
  be filtered independently. The resulting sequence of lines will be compared
  exactly.

-------------------------------------------------------------------------------
 Version 3.1
-------------------------------------------------------------------------------

- Extending pyunit functionality to employ the 'unittest2' package if
  it is available and the Python version is below 2.7. This exposes
  methods for skipping tests and checking for expected failures.

-------------------------------------------------------------------------------
 Version 3.0
-------------------------------------------------------------------------------

- Initial release PyUtilib to create the pyutilib.th package.

- See pyutilib.dist for previous ChangeLog information related to PyUtilib.

