==============================================================================
                  Release of version 0.07 of Perl6::Export
==============================================================================


Perl6/Export version 0.01
=========================

This module prototypes the Perl 6 'exported' and 'exportable' traits
in Perl 5.

Instead of messing around with @EXPORT arrays, you just declare which subs
are to be exported (or are exportable on request) as part of those subs.

For example:

       sub foo is exported {           # by default
               ...
       }

       sub bar is exportable {         # on request
               ...
       }


INSTALLATION

To install this module type the following:

  perl Makefile.PL
  make
  make test
  make install

DEPENDENCIES

This module requires these other modules and libraries:

 Filter::Simple


COPYRIGHT AND LICENCE

Copyright (C) 2003 Damian Conway

This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.



==============================================================================

CHANGES IN VERSION 0.07


       - Minor doc bug fix


==============================================================================

AVAILABILITY

Perl6::Export has been uploaded to the CPAN

==============================================================================