keep $VERSION right in the repo
[p5sagit/Devel-REPL.git] / lib / Devel / REPL / Script.pm
index fe01d53..2b19440 100644 (file)
@@ -1,5 +1,7 @@
 package Devel::REPL::Script;
 
+our $VERSION = '1.003027';
+
 use Moose;
 use Devel::REPL;
 use File::HomeDir;
@@ -19,7 +21,7 @@ has 'rcfile' => (
 has 'profile' => (
   is       => 'ro',
   isa      => 'Str',
-  default  => sub { $ENV{DEVEL_REPL_PROFILE} || 'Default' },
+  default  => sub { $ENV{DEVEL_REPL_PROFILE} || 'Minimal' },
 );
 
 has '_repl' => (