The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
0.17_01 2011.12.06
    - adjust required version for 'E' requires 5.8.6
      (Note that threading support was built into the debugger as of 
      Perl version 5.8.6 and debugger version 1.2.8.)
    - Opps requires 'IO::Socket' reset to '1.31'
    - try some other testing modules Test::Class
    - Tidy POD (BOWTIE)

0.16 2011.11.30
    - Add Methods list_subroutine_names, set_option, get_options, module
    - tweak to return line & row from dot if all else fails
    - tweak to Makefile dependances
    - Ammend POD for above
    - Ammend test to support above (BOWTIE)

0.15 2011.11.24
    - removed Method listen
    - comment out list_subroutine_names & _set_option
    - Modify Method get_value to accepect no values
    - Modify get_p_exp
    - Ammend test to support above (BOWTIE)

0.14 2011.11.24
    - Released 0.13_10 as stable 0.14 (AZAWAWI)

0.13_10 2011.11.20
    - rename Method _show_help -> get_h_var
      rename Method get_p_ext -> get_p_exp
      Add tests for above (BOWTIE)

0.13_09 2011.11.17
    - Add a Method get_p_ext (BOWTIE)

0.13_08 2011.11.13
    - No newer ExtUtils::MakeMaker dependency. Removed a couple of unneeded test
    dependencies (AZAWAWI)

0.13_07 2011.11.09
    - Tweaks to tests for above (BOWTIE)
    
0.13_06 2011.11.09
    - Add Method show_view
      modify method show_line
      Add Method _show_help
      Tweaks to tests for above
      spell check POD (BOWTIE)

0.13_05 2011.11.07
    - default port changed to 24642 as port 12345 regestered to "Italk Chat System" (BOWTIE)
    - _process_line is where all the generated errors from cpantesters come from
      $count = 0; and some tewaks to $line to suppress errors when buffer is empty (BOWTIE)

0.13_04 2011.11.05
    - Perl::Critic Error Subroutine "listen" is a homonym for builtin function
      listen changed to listerner (BOWTIE)
    - using ReuseAddr as Reuse has bean deprecated (BOWTIE)
    - Perl::Critic severity => 5, & severity => 4, pass now (BOWTIE)
    - tweak to test t/02... (BOWTIE)

0.13_03 2011.11.04
    - Tweak some tests (BOWTIE)
    - Updates to POD use $debugger throughout instead of $d (BOWTIE)
    - Add a test for get_v_vars
      Add a test for get_y_zero
      Add a test for list_subroutine_names (BOWTIE)

0.13_02 2011.11.03
    - re-factor eg/02-sub.pl, change sub f to sub func1 (BOWTIE)
    - Add a test for get_y_zero
      Add a test for toggle_trace (BOWTIE)
    - Updates to POD to complement new Methods (BOWTIE)

0.13_01 2011.11.02
    - POD add skip for perl -d c [line|sub] for perl5db.pl >= 1.34 (BOWTIE)
    - skip some tests t/08....
      skip some tests t/04.... (BOWTIE)
    - development upgrade to 0.13_01 for P-P-Debug
      add several more methods, and t/13.... (BOWTIE)

v0.12 2011.07.21
    skip some tests if ~/.perldb exists (GARU)
    add an example called debugger.pl

v0.11 2009.12.22
    Eliminate most of the list/scalar context separation from methods.

v0.10 2009.12.20
    Add some code to debuge certain test failures
    Turn _prompt and _process_line into method calls
    Keep the current filename and row number in the debugger object

v0.09 2009.12.18
    Add case when content of the line is shown on a separate line
    Mark when a call has terminated the debugger.

v0.08 2009.12.16
    Added more tests.
    Fixing some tests.
    set_breakpoint now returns true/false
    remove_breakpoint added
    list_break_watch_action added

v0.07 2009.12.15
    Added more test.

v0.06 2009.12.14
    Prompt is now the first return paramter
    Added more tests
    Added more documentation
    
v0.05 2009.12.13
    Try to eliminate infinite loop
    Try to make sure tests are not hung by calling quit at the end of each
    Put the STDOUT and STDERR files in temp directory
    Use Module::Install instead of Module::Build

v0.04 2008.09.16
    Add more methods
    Add more tests
    Rename to Debug::Client
    Remove the global $response variable and let users fetch the buffer using $dbg->buffer

v0.03 2008.09.13
    Add debug output for tests to better understand test failures.
    More tests

v0.02 2008.09.13
    Replace step by step_in
    Add methods step_out, step_over, get_value
    Let those method return detailed data in LIST context

v0.01 2008.09.13

    Initial release