Skip to content

Commit

Permalink
1.04 - Increased Runtime::Debugger -> 0.20
Browse files Browse the repository at this point in the history
  • Loading branch information
Timofey Potapov committed May 14, 2024
1 parent 06668e9 commit 512a148
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 12 deletions.
9 changes: 2 additions & 7 deletions Build.PL
Original file line number Diff line number Diff line change
Expand Up @@ -32,19 +32,14 @@ my $builder = $class->new(
requires => {
'perl' => '5.016',
'Sub::Util' => '0',
'Runtime::Debugger' => '0.19',
'Runtime::Debugger' => '0.20',
'Data::Trace' => '0.19',
'Tiny::Prof' => '0',
'Mojolicious' => '0',
'YAML::XS' => '0',
'Data::Printer' => '0',
},
add_to_cleanup => [
'e-*',
'MANIFEST*.bak',
'README*',
'blib/',
],
add_to_cleanup => [ 'e-*', 'MANIFEST*.bak', 'README*', 'blib/', ],
meta_merge => {
resources => {
bugtracker => 'https://github.com/poti1/e/issues',
Expand Down
6 changes: 6 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
Revision history for e

=================
1.04 - 2024-05-14
=================

Increased Runtime::Debugger -> 0.20

=================
1.03 - 2024-05-13
=================
Expand Down
10 changes: 5 additions & 5 deletions lib/e.pm
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ e - Unleash the power of e!
=cut

our $VERSION = 1.03;
our $VERSION = '1.04';

=head1 SYNOPSIS
Expand Down Expand Up @@ -78,7 +78,7 @@ sub monkey_patch {
my ( $class, %patch ) = @_;

require Sub::Util; # Can omit set_subname, but it makes traces nicer.
no strict "refs";
no strict 'refs';

for ( keys %patch ) {
*{"${class}::$_"} =
Expand All @@ -103,7 +103,7 @@ sub import {
# Debugging.
repl => sub {
require Runtime::Debugger;
Runtime::Debugger->VERSION( 0.19 )
Runtime::Debugger->VERSION( '0.20' )
; # Since not using "use MODULE VERSION".
Runtime::Debugger::repl(
levels_up => 1,
Expand All @@ -114,15 +114,15 @@ sub import {
# Tracing.
trace => sub { # Stack or var trace.
require Data::Trace;
Data::Trace->VERSION( 0.19 )
Data::Trace->VERSION( '0.19' )
; # Since not using "use MODULE VERSION".
Data::Trace::Trace( @_ );
},

# Alias for trace.
watch => sub { # Stack or var trace.
require Data::Trace;
Data::Trace->VERSION( 0.19 )
Data::Trace->VERSION( '0.19' )
; # Since not using "use MODULE VERSION".
Data::Trace::Trace( @_ );
},
Expand Down

0 comments on commit 512a148

Please sign in to comment.