The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
This file documents the revision history for Perl distribution
`DBICx-Modeler-Generator`.


VERSION HISTORY
===============

0.02 : Released on 2010-03-20 (JST)
-----------------------------------

Codes have no changes.

### Bug fixes

#### Packaging

-   Remove superfluous dependency `mro` which related to `Test::Class`
    (`MRO::Compat`).
    This problem is concerned with RT #55482.

### Refactoring

#### Packaging

-   Refactor `Makefile.PL`.


0.01 : Released on 2010-03-19 (JST)
-----------------------------------

Codes have no changes.

### Bug fixes

#### Packaging

-   Resolve RT #55482: Undeclared dependencies on test related modules.
    Thanks to Andreas Koenig.
-   Explicitly declare `author_tests` in `Makefile.PL`
    (for including `Module::Install::AuthorTests`).
-   Correct resources (repository and homepage).
-   Disable `auto_install`.

#### Documentation

-   Correct POD syntax in `DBICx::Modeler::Generator::JA`
    (for properly index POD only files).


0.0003 : Released on 2009-12-21 (JST)
-------------------------------------

### Distribution

-   Fixed the pre-required modules.


### Documents

-   Updates trivial description of documents.


0.0002 : Released on 2009-12-17 (JST)
-------------------------------------

Initial release to CPAN.

### Documents

-   Updates trivial description of documents.


0.0001 : Released on 2009-12-07 (JST)
-------------------------------------

Fixed several problems in Unix-like systems.
(not for CPAN)

### Fixed bugs

#### `DBICx::Modeler::Generator::CLI`

-   Modified a circular dependency problem.

### Tests

-   Added skip_all if command line interface is not installed/is not available.
-   Modified syntax of `coverage.sh`.


0.00 : Released on 2009-12-07 (JST)
-----------------------------------

Initial release.
(not for CPAN)

### Features

#### `DBICx::Modeler::Generator`

-   Implemented `DBICx::Modeler::Generator`,
    which provides dynamic definition of a models for `DBICx::Modeler`
    and schemata for `DBIx::Class::Schema` with `DBIx::Class::Schema::Loader`.

### Tests

-   Prepared tests for `DBICx::Modeler::Generator`.

### Documents

-   Prepared minimal documents.


META INFORMATION
================

Version notation
----------------

    V.vvrr_dd : Released on YYYY-MM-DD (Time Zone)

### V  : Major version number

-   Added ambitious features
-   Changed in APIs
    (older API will be keeped to compatibility for a some period)
-   ...

### vv : Minor version number (in major version)

-   Added several features
-   Improved any features
-   Fixed bugs
-   ...

### rr : Revision number (in minor version, on demand)

You would not need to update the distribution.

-   Improved tests
-   Updated documents
-   ...

### dd : Developer release number (in revision number, on demand)

This is unstable version.
Unless you are a developer, You will not be recommended to upgrade
the distribution.

-   Added experimental features
-   Fixed bugs provisionally
-   ...


Document format
---------------

This `Changes` file was formatted in Markdown.

    $ perl -MText::Markdown -MFile::Slurp -e \
      'print (Text::Markdown->new->markdown(scalar read_file(q{Changes})));'