0.609   2023-11-17  Released-By: PERLANCAR; Urgency: medium
        - Update module name (File::MoreUtil -> File::Util::Test).
0.608   2023-07-15  Released-By: PERLANCAR; Urgency: medium
        - Add option: -N (--no-dry-run).
0.607   2023-06-30  Released-By: PERLANCAR; Urgency: medium
        - Split scriptlet add_extension_according_to_mime_type to its own
          distro to minimize dependencies.
0.606   2022-06-24  Released-By: PERLANCAR; Urgency: medium
        - Add scriptlet: add-extension-according-to-mime-type.
0.605   2022-02-25  Released-By: PERLANCAR; Urgency: high
        - Merge releases 0.604 and 0.604.2.
0.604.2 2022-02-25  Released-By: PERLANCAR; Urgency: medium
        - [test] Allow the scripts to find App::perlmv in lib/ (RT#133289).
        - UPDATE: rename from 0.604 to 0.604.2.
0.604   2020-08-18  Released-By: PERLANCAR; Urgency: medium
	- Make $PERLMV available to scriptlet.
0.603   2020-08-04  Released-By: PERLANCAR; Urgency: low
	- No functional changes.
	- [dist] Use dzil and Pod::Weaver plugin 'perlmv'.
0.602   2020-08-03  Released-By: PERLANCAR; Urgency: low
        - No functional changes.
	- [doc] Add 'use Getopt::Long::Complete' in script/perlmv et al so we
	  can detect the script as using GLC and produce appropriate
	  documentation.
0.601   2020-08-03  Released-By: PERLANCAR; Urgency: medium
	- Allow specifying arguments for code (-a, --arg).
	- Check that module defines $SCRIPTLET.
0.600   2020-08-02  Released-By: PERLANCAR
        - Support searching for scriptlet in App::perlmv::scriptlet::* modules.
          In this way, scriptlet code is written as normal Perl code instead of
          inside a string, so it can get checked when loaded. You can also add
          summary/description/tags etc.
        - Add tab completion support.
0.50    2015-11-17  Released-By: PERLANCAR
	- Revert previous "fix", $anew becomes undef not because of
	  rel2abs() but because of l_abs_path, apply patch by VLASENKO
	  [RT#108952].
0.49    2015-11-17  Released-By: PERLANCAR
	- Warn when rel2abs() fails [RT#108952].
	- Observe DEBUG_KEEP_TEMPDIR instead of DEBUG in test to keep
	  tempdir (also observed by App::fsql, App::depak).
0.48    2015-01-07  Released-By: PERLANCAR
	- No functional changes.
	- [Bugfix][dzil] Placed prereq File::MoreUtil in the wrong section
	  [CT].
0.47     2014-05-15  Released-By: PERLANCAR
         - [Bugfix] Use l_abs_path() instead of abs_path() so we can handle
           symlinks to non-existing targets. Also, use File::Spec->rel2abs()
           instead of abs_path() to absolutize new/renamed file, because new
           path might not exist (yet). [RT#101288]
0.46     2014-05-15  Released-By: SHARYANTO
         - No functional changes.
         - Replace given/when in test suite to if/else, because it becomes
           experimental in 5.18 [RT#95630].
0.45     2013-04-25  Released-By: SHARYANTO
         - No functional changes.
         - Move main POD from perlrename -> perlmv.
0.44     2013-04-25  Released-By: SHARYANTO
         - 'perlmv' now uses File::Copy::move() to be able to move files across
           devices. The new script 'perlrename' is added; this one still uses
           Perl's rename().
0.43     2012-02-28  Released-By: SHARYANTO
         - Provide $FILE, $DIR, $PARENT for scriptlet.
0.42     2011-12-15  Released-By: SHARYANTO
         - Add scriptlets: keep-one-ext, remove-ext, remove-all-ext.
0.41     2010-10-18  Released-By: SHARYANTO
         - Add scriptlet: to-number & to-timestamp.
         - Some minor dzil fixes.
0.40     2010-09-30  Released-By: SHARYANTO
         - Clean backup files.
0.39     2010-09-30  Released-By: SHARYANTO
         - Add option: -T (--no-sort) to make example work.
0.38     2010-09-27  Released-By: SHARYANTO
         - Multiple scriptlets and/or command-line code can now be specified, a
           la piping.
         - INCOMPATIBLE: -e is now --eval instead of --execute. New -x option is
           now --execute.
         - Some fixes in dryrun handling.
         - Allow -e '' (previous version would wrongly assume next argument is
           scriptlet).
         - Add more documentation and examples.
0.37     2010-07-03  Released-By: SHARYANTO
         - Fix bug: store_scriptlets was broken (Thanks Kurt vom Walde).
0.36     2010-07-02  Released-By: SHARYANTO
         - Introduce $COMPILING as alias for $COMPILING.
         - Introduce $CLEANING for running code between run.
         - Fix scriptlet: to-number-ext (still used @ARGV).
0.35     2010-07-01  Released-By: SHARYANTO
         - Add scriptlet: trim.
         - Add scriptlet: dedup-space.
0.34     2010-06-30  Released-By: SHARYANTO
         - Add test for each included scriptlet.
         - Provide $FILES (arrayref) for code.
0.33     2010-06-29  Released-By: SHARYANTO
         - Require Test::Exception [reported by cpantesters]
0.32     2010-06-24  Released-By: SHARYANTO
         - Fix failing tests on *cp*antesters machines.
0.31     2010-06-23  Released-By: SHARYANTO
         - Now requires Perl 5.10 (sorry guys).
         - Switch to Getopt::Long, add long options (SawyerX++).
         - Refactor code to be more OO (SawyerX++).
         - Refactor tests (multitude fails on various platforms reported
           by cpantesters).
0.30     2010-05-21  Released-By: SHARYANTO
         - Add option: -p (create intermediate dirs).
         - Add option: -M (mode rename/copy/symlink/link).
         - Add new commands: perlcp, perlln, perlln_s.
0.29     2010-05-15  Released-By: SHARYANTO
         - Fix -v.
0.28     2010-05-15  Released-By: SHARYANTO
         - Rename option: -r (recursive) -> -R
         - Add option: -r  Released-By: reverse order
         - $_ will be set to the result of code, if defined (so we can just say
           -e 'lc' instead of -e '$_=lc')
0.27     2010-05-14  Released-By: SHARYANTO
         - Adjust test to account for case-insensitive filesystems.
0.26     2010-05-13  Released-By: SHARYANTO
         - Rename options: -S -> -s, -W -> -w, -L -> -l.
         - Add option: -S (skip symlinks).
         - Rename scriptlet: with-numbers- > to-number-ext.
         - Add scriptlets: unaccent, to-timestamp-ext.
0.25     2010-05-13  Released-By: SHARYANTO
         - Documentation.
         - Sort -L output. -Lv will show each scriptlet's source.
0.24     2010-05-12  Released-By: SHARYANTO
         - First release to CPAN. Prior versions were not released and named
           C<perlrename>.