NAME
    Text::MicroMason::Docs::Changes - Change History for the MicroMason
    Distribution

VERSION 2 HISTORY
  Version 1.98

    2004-11-29
        Fixed unprotected test dependency on Text::Balanced for TextTemplate
        emulation.

        Fixed unexpected side-effect of change to parsing for
        single-character Filter flags.

        Minor adjustments to POD documentation.

  Version 1.97

    2004-11-28
        Moved to do list into new pod file. Moved extra pod files into Docs
        namespace.

        Added _printable to default set of functions in Filters. Tweaked
        parse_filters and get_filter_functions methods.

        Changed internal names for ouput and include token types to expr and
        file. Corrected typo in one of the assembler token names.

        Adjusted $Carp::CarpLevel in Base croak_msg().

        Fixed test failure in t/33-filters.t reported by William Kern.

    2004-10-24
        Fixed typo in ServerPages example; thanks to William Kern for
        pointing it out.

    2004-10-20
        Adjustments to documentation in top-level package.

  Version 1.96

    2004-10-19
        Added PostProcess mixin class at the suggestion of Alan Ferrency.

        Renamed a few keys in the hash returned by assembler_rules().

        Moved syntax documentation to Mason subclass.

  Version 1.95

    2004-10-19
        Fixed problem with extra semicolons breaking code statements broken
        onto multiple % code lines; thanks to Alan Ferrency for test code to
        isolate the problem, now added to regression tests.

    2004-10-17
        Documentation updates.

  Version 1.94

    2004-10-17
        Factored subclass-specific lex_token() method out from superclass
        lex() method.

        Added Embperl mixin class with emulation for HTML::Embperl.

        Merged Devel.pod back in to other package documentation.

    2004-10-16
        Replaced assembler attribute with assembler_rules() method.

        Added Mason subclass and moved some functionality to there from
        Base.

        Documentation updates.

    2004-10-15
        Added HTMLTemplate mixin class with emulation for HTML::Template.

    2004-10-13
        Added TextTemplate mixin class with emulation for Text::Template.

  Version 1.93

    2004-10-12
        Instead of run-time eval of @MIXIN to fix SUPER resolution, now
        using a new SUPER method.

    2004-10-11
        Documentation updates.

  Version 1.92

    2004-10-11
        Uploaded to CPAN to fix packaging issue with 1.9_1.

  Version 1.91

    2004-10-10
        Posted description of mixin mechanism to PerlMonks for discussion.

        Debugged CompileCache and finished ExecuteCache. Added test scripts.

        Debugged TemplateDir and added test script.

        Implemented support for one-time options passed to compile that
        override other attributes. Adjusted Safe facade to prevent this from
        being done there, in order to avoid escapes from a Safe compartment.

    2004-10-09
        Reorganized t/ directory.

  Version 1.90

    2004-10-08
        Documentation updates.

    2004-10-05
        Documentation updates.

  Version 1.55

    2004-09-23
        Documentation updates.

  Version 1.54

    2004-09-22
        Renamed "interpret" method to "execute" for consistency with
        function interface.

        Moved try_ functionality to new ErrorCatching mixin.

        Generalized behavior of assemble method; moved template elements
        into %Assembly hash.

  Version 1.53

    2004-09-22
        Moved Safe functionality to new Safe mixin.

        Moved filtering functionality to new Filters mixin.

    2004-09-21
        Added mixin inheritance hacking logic based on
        DBIx::SQLEngine::Record::Class.

  Version 1.52

    2004-09-19
        Extracted Changes to separate POD document.

    2004-09-18
        Additional work.

  Version 1.51

    2004-09-17
        Refactoring of method interface to merge compie and interpretation
        into single subroutines with parameters to indicate whether we're
        reading text or a file.

        Added initial support for filtering interpolated expressions based
        on a patch and extended discussion with Alan Ferrency.

        Packaged as version 1.51 but not released to CPAN.

    2004-09-16
        Refactored to object-oriented implementation to allow subclassing.
        Inspired by discussion with Alan Ferrency about how to extend
        functionality.

        Started CodeCache subclass based on experimental caching code
        included in 1.07.

        Started TemplateDir subclass with base directory and relative path
        calculations based on a patch from Tommi Maekitalo.

        Incorporated patch from Tommi Maekitalo to put default values from
        an <%args> block into the %ARGS variable as well as the separate
        named variables.

        Created ServerPages subclass based on feature request from William
        Kern.

    2004-09-15
        Moved package documentation into separate ReadMe.pod.

VERSION 1 HISTORY
  Version 1.07

    2003-09-26
        Discard line break after <%perl> block as suggested by Tommi
        Maekitalo. Note that removing these line breaks may affect the
        rendering of your current templates! Although I am typically
        hesitant to change established behavior, this does improve the
        template output and brings us into line with HTML::Mason's behavior.

        Added $Debug flag and support for <%args> blocks based on a
        contribution by Tommi Maekitalo.

        Adjusted internals to allow block reordering, and added support for
        <%init> and <%once>.

        Released as Text-MicroMason-1.07.tar.gz.

  Version 1.06

    2003-09-04
        Changed the way that subroutines were scoped into the
        Text::MicroMason::Commands namespace so that Safe compartments with
        separate namespaces and shared symbols have the visibility that one
        would expect.

        Fixed a bug in which an unadorned percent sign halted parsing, as
        reported by William Kern at PixelGate. Added a test to the end of
        6-regression.t that fails under 1.05 but passes under 1.06 to
        confirm this.

        Simplified parser regular expressions by using non-greedy matching.

        Added documentation for *_file() functions. Corrected documentation
        to reflect the fact that template code is not compiled with "use
        safe" in effect by default, but that this might change in the
        future.

        Released as Text-MicroMason-1.06.tar.gz.

  Version 1.05

    2003-08-11
        Adjusted regular expression based on parsing problems reported by
        Philip King and Daniel J. Wright, related to newlines and EOF. Added
        regression tests that fail under 1.04 but pass under 1.05 to ensure
        these features keep working as expected.

        Added non-printing-character escaping to parser failure and
        debugging messages to better track future reports of
        whitespace-related bugs.

        Moved tests from test.pl into t/ subdirectory.

        Added experimental suppport for file code cache in
        compile_file_codecache.

        Released as Text-MicroMason-1.05.tar.gz.

  Version 1.04

    2002-06-23
        Adjusted regular expression based on parsing problems reported by
        Mark Hampton.

        Added file-include support with <& ... &> syntax.

        Documentation tweaks. Adjusted version number to simpler 0.00
        format. Released as Text-MicroMason-1.04.tar.gz.

    2002-01-14
        Documentation tweaks based on feedback from Pascal Barbedor. Updated
        author's contact information.

  Version 1.0.3

    2001-07-01
        Renamed from HTML::MicroMason to Text::MicroMason. Documentation
        tweaks. Released as Text-MicroMason-1.0.3.tar.gz.

  Version 1.0.2

    2001-04-10
        Munged interface for clarity. Added Safe support. Adjusted docs to
        reflect feedback from mason-users. Released as
        HTML-MicroMason-1.0.2.tar.gz.

  Version 1.0.1

    2001-03-28
        Parser tweakage; additional documentation. Added Exporter support.
        Released as HTML-MicroMason-1.0.1.tar.gz.

    2001-03-26
        Added try_interpret; documented error messages.

  Version 1.0.0

    2001-03-23
        Extended documentation; added makefile, test script. Renamed
        accumulator to $OUT to match Text::Template. Released as
        HTML-MicroMason-1.0.0.tar.gz.

    2001-03-22
        Created.

SEE ALSO
    For distribution, installation, support, copyright and license
    information, see the Text::MicroMason::Docs::ReadMe manpage.

