From: oliver Date: Tue, 6 Jan 2009 23:05:24 +0000 (+0000) Subject: update dependency versions, update Changes file from svn log X-Git-Tag: v1.003015~77 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=70b00e9c6830954a2dd67b6dd593701b43d2c217;p=p5sagit%2FDevel-REPL.git update dependency versions, update Changes file from svn log git-svn-id: http://dev.catalyst.perl.org/repos/bast/trunk/Devel-REPL@5287 bd8105ee-0ff8-0310-8827-fb3f25b6796d --- diff --git a/Changes b/Changes index 870eb94..67ca703 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,37 @@ +1.3.0 + - OutputCache: If sub _ is already defined, then warn about it (once) and refuse to overwrite it + - Turn MultiLine::PPI's needs_continuation into a method line_needs_continuation + - Cleanup Plugin::Packages + - Print a warning when Completion is loaded but the Term::ReadLine object doesn't support completion + - Introduce error object for error_return + - Make compile return a single value, use is_error to test if it's bad (it's now an error object instead of undef + error str) + - Refactor to make it easier to add print/warn to the session + - Preserve $^H and %^H when using the LexEnv plugin + - Refactor the finding of the last element of the document into a method in Completion + - Use namespaace::clean in turtles completion driver + - Use Devel::REPL::Plugin instead of Moose::Role + - Use "BEFORE_PLUGIN { load_plugin }" instead of "with" + - Fix from Sartak for end-of-line comment bug reported by jrockway + - Allow exception objects. + - Don't initialize a turtles matcher if we don't need to + - Improve the MultiLine::PPI plugin by checking whether adding ;; will end in PPI::Statement::Null. If not, then there must be some incomplete structure + - Respect env var DEVEL_REPL_PROFILE + - + - Devel::REPL::Plugin::Peek + - Devel::REPL::Plugin::B::Concise + - Add CompletionDriver::Turtles + - Devel::REPL::Error + - Add a Nopaste plugin. #nopaste will publish your current session using App::Nopaste + - Add the @INC completion driver. + - Devel::REPL::Plugin::CompletionDriver::Globals + - Add a PPI plugin for #ppi CODE + - CompletionDriver::Methods which currently only works on classnames + - FindVariable plugin, which returns a reference to a global variable by name + - + - Update dependencies + - Give "NAME" pod sections to all the plugins + - Add AUTHOR sections where I know off the top of my head who wrote the plugin + - Expand some of the user documentation 1.2.1 - ship a working version of 1.2.0 1.2.0 diff --git a/Makefile.PL b/Makefile.PL index 97bf2e5..4dddf24 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -7,11 +7,10 @@ all_from 'lib/Devel/REPL.pm'; install_script 'script/re.pl'; -build_requires 'Test::More'; -requires 'Moose' => '0.38'; -requires 'MooseX::Object::Pluggable' => '0.0007'; -requires 'MooseX::Getopt'; -requires 'MooseX::AttributeHelpers'; +requires 'Moose' => '0.64'; +requires 'MooseX::Object::Pluggable' => '0.0009'; +requires 'MooseX::Getopt' => '0.15'; +requires 'MooseX::AttributeHelpers' => '0.14'; requires 'namespace::clean'; requires 'File::HomeDir'; requires 'File::Spec'; @@ -24,5 +23,7 @@ requires 'B::Keywords'; requires 'Task::Weaken'; requires 'App::Nopaste'; +test_requires 'Test::More'; + auto_install; WriteAll;